BatchClearValuesByDataFilterResponse.fromJson constructor
BatchClearValuesByDataFilterResponse.fromJson(
- Map json_
Implementation
BatchClearValuesByDataFilterResponse.fromJson(core.Map json_)
: this(
clearedRanges: json_.containsKey('clearedRanges')
? (json_['clearedRanges'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
spreadsheetId: json_.containsKey('spreadsheetId')
? json_['spreadsheetId'] as core.String
: null,
);