BatchClearValuesResponse.fromJson constructor

BatchClearValuesResponse.fromJson(
  1. Map json_
)

Implementation

BatchClearValuesResponse.fromJson(core.Map json_)
  : this(
      clearedRanges:
          (json_['clearedRanges'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      spreadsheetId: json_['spreadsheetId'] as core.String?,
    );