TableCellLocation constructor

TableCellLocation({
  1. int? columnIndex,
  2. int? rowIndex,
  3. Location? tableStartLocation,
})

Implementation

TableCellLocation({
  this.columnIndex,
  this.rowIndex,
  this.tableStartLocation,
});