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_['locationType'] as core.String?,
        sheetId: json_['sheetId'] as core.int?,
        spreadsheet: json_['spreadsheet'] as core.bool?,
      );