getCellState method

CellFormState? getCellState(
  1. int row,
  2. int col
)

Retrieves the current validation/override state for a specific cell coordinate.

Implementation

CellFormState? getCellState(int row, int col) {
  return _cellStates["${row}_${col}"];
}