toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final spreadsheetId = this.spreadsheetId;
  final updatedCells = this.updatedCells;
  final updatedColumns = this.updatedColumns;
  final updatedData = this.updatedData;
  final updatedRange = this.updatedRange;
  final updatedRows = this.updatedRows;
  return {
    'spreadsheetId': ?spreadsheetId,
    'updatedCells': ?updatedCells,
    'updatedColumns': ?updatedColumns,
    'updatedData': ?updatedData,
    'updatedRange': ?updatedRange,
    'updatedRows': ?updatedRows,
  };
}