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