toJson method

Map<String, dynamic> toJson()

Implementation

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