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