BatchUpdateValuesResponse.fromJson constructor

BatchUpdateValuesResponse.fromJson(
  1. Map json_
)

Implementation

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