EditableCellValidator typedef

EditableCellValidator = String? Function(String value, EditableRow row)

Row-aware validator for a column. Receives the cell value and the full row it belongs to (so it can validate against sibling cells), and returns an error message, or null when valid.

Implementation

typedef EditableCellValidator = String? Function(String value, EditableRow row);