toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (columns != null) 'columns': columns!,
  if (rows != null) 'rows': rows!,
  if (suggestedDeletionIds != null)
    'suggestedDeletionIds': suggestedDeletionIds!,
  if (suggestedInsertionIds != null)
    'suggestedInsertionIds': suggestedInsertionIds!,
  if (tableRows != null) 'tableRows': tableRows!,
  if (tableStyle != null) 'tableStyle': tableStyle!,
};