toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dimensionRange = this.dimensionRange;
final locationType = this.locationType;
final sheetId = this.sheetId;
final spreadsheet = this.spreadsheet;
return {
'dimensionRange': ?dimensionRange,
'locationType': ?locationType,
'sheetId': ?sheetId,
'spreadsheet': ?spreadsheet,
};
}