getRowCellModel method
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)];
}