toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final replies = this.replies;
  final spreadsheetId = this.spreadsheetId;
  final updatedSpreadsheet = this.updatedSpreadsheet;
  return {
    'replies': ?replies,
    'spreadsheetId': ?spreadsheetId,
    'updatedSpreadsheet': ?updatedSpreadsheet,
  };
}