toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final fields = this.fields;
final objectId = this.objectId;
final rowIndices = this.rowIndices;
final tableRowProperties = this.tableRowProperties;
return {
'fields': ?fields,
'objectId': ?objectId,
'rowIndices': ?rowIndices,
'tableRowProperties': ?tableRowProperties,
};
}