BatchUpdateValuesByDataFilterResponse.fromJson constructor

BatchUpdateValuesByDataFilterResponse.fromJson(
  1. Map json_
)

Implementation

BatchUpdateValuesByDataFilterResponse.fromJson(core.Map json_)
    : this(
        responses: json_.containsKey('responses')
            ? (json_['responses'] as core.List)
                .map((value) => UpdateValuesByDataFilterResponse.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        spreadsheetId: json_.containsKey('spreadsheetId')
            ? json_['spreadsheetId'] as core.String
            : null,
        totalUpdatedCells: json_.containsKey('totalUpdatedCells')
            ? json_['totalUpdatedCells'] as core.int
            : null,
        totalUpdatedColumns: json_.containsKey('totalUpdatedColumns')
            ? json_['totalUpdatedColumns'] as core.int
            : null,
        totalUpdatedRows: json_.containsKey('totalUpdatedRows')
            ? json_['totalUpdatedRows'] as core.int
            : null,
        totalUpdatedSheets: json_.containsKey('totalUpdatedSheets')
            ? json_['totalUpdatedSheets'] as core.int
            : null,
      );