toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final responses = this.responses;
final spreadsheetId = this.spreadsheetId;
final totalUpdatedCells = this.totalUpdatedCells;
final totalUpdatedColumns = this.totalUpdatedColumns;
final totalUpdatedRows = this.totalUpdatedRows;
final totalUpdatedSheets = this.totalUpdatedSheets;
return {
'responses': ?responses,
'spreadsheetId': ?spreadsheetId,
'totalUpdatedCells': ?totalUpdatedCells,
'totalUpdatedColumns': ?totalUpdatedColumns,
'totalUpdatedRows': ?totalUpdatedRows,
'totalUpdatedSheets': ?totalUpdatedSheets,
};
}