getRowCellModel method

TableRowCellModel? getRowCellModel(
  1. int rowIdx,
  2. int cellIdx
)

Implementation

TableRowCellModel? getRowCellModel(int rowIdx, int cellIdx) {
  TableRowModel? model = getRowModel(rowIdx);
  if (model == null || cellIdx >= model.cells.length) return null;
  return model.cells[max(cellIdx, 0)];
}