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