toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (content != null) 'content': content!,
  if (endIndex != null) 'endIndex': endIndex!,
  if (startIndex != null) 'startIndex': startIndex!,
  if (suggestedDeletionIds != null)
    'suggestedDeletionIds': suggestedDeletionIds!,
  if (suggestedInsertionIds != null)
    'suggestedInsertionIds': suggestedInsertionIds!,
  if (suggestedTableCellStyleChanges != null)
    'suggestedTableCellStyleChanges': suggestedTableCellStyleChanges!,
  if (tableCellStyle != null) 'tableCellStyle': tableCellStyle!,
};