DeveloperMetadataLocation.fromJson constructor

DeveloperMetadataLocation.fromJson(
  1. Map json_
)

Implementation

DeveloperMetadataLocation.fromJson(core.Map json_)
    : this(
        dimensionRange: json_.containsKey('dimensionRange')
            ? DimensionRange.fromJson(json_['dimensionRange']
                as core.Map<core.String, core.dynamic>)
            : null,
        locationType: json_.containsKey('locationType')
            ? json_['locationType'] as core.String
            : null,
        sheetId: json_.containsKey('sheetId')
            ? json_['sheetId'] as core.int
            : null,
        spreadsheet: json_.containsKey('spreadsheet')
            ? json_['spreadsheet'] as core.bool
            : null,
      );