toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final content = this.content;
final endIndex = this.endIndex;
final startIndex = this.startIndex;
final suggestedDeletionIds = this.suggestedDeletionIds;
final suggestedInsertionIds = this.suggestedInsertionIds;
final suggestedTableCellStyleChanges = this.suggestedTableCellStyleChanges;
final tableCellStyle = this.tableCellStyle;
return {
'content': ?content,
'endIndex': ?endIndex,
'startIndex': ?startIndex,
'suggestedDeletionIds': ?suggestedDeletionIds,
'suggestedInsertionIds': ?suggestedInsertionIds,
'suggestedTableCellStyleChanges': ?suggestedTableCellStyleChanges,
'tableCellStyle': ?tableCellStyle,
};
}