toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final endIndex = this.endIndex;
  final startIndex = this.startIndex;
  final suggestedDeletionIds = this.suggestedDeletionIds;
  final suggestedInsertionIds = this.suggestedInsertionIds;
  final suggestedTableRowStyleChanges = this.suggestedTableRowStyleChanges;
  final tableCells = this.tableCells;
  final tableRowStyle = this.tableRowStyle;
  return {
    'endIndex': ?endIndex,
    'startIndex': ?startIndex,
    'suggestedDeletionIds': ?suggestedDeletionIds,
    'suggestedInsertionIds': ?suggestedInsertionIds,
    'suggestedTableRowStyleChanges': ?suggestedTableRowStyleChanges,
    'tableCells': ?tableCells,
    'tableRowStyle': ?tableRowStyle,
  };
}