hasValidationErrors method

bool hasValidationErrors()

Checks if any cell in the grid currently contains a hard validation error.

Implementation

bool hasValidationErrors() {
  return _cellStates.values.any((state) => state.errorText != null);
}