toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final columnProperties = this.columnProperties;
final name = this.name;
final range = this.range;
final rowsProperties = this.rowsProperties;
final tableId = this.tableId;
return {
'columnProperties': ?columnProperties,
'name': ?name,
'range': ?range,
'rowsProperties': ?rowsProperties,
'tableId': ?tableId,
};
}