toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final fields = this.fields;
  final objectId = this.objectId;
  final tableCellProperties = this.tableCellProperties;
  final tableRange = this.tableRange;
  return {
    'fields': ?fields,
    'objectId': ?objectId,
    'tableCellProperties': ?tableCellProperties,
    'tableRange': ?tableRange,
  };
}