CellFormState constructor

CellFormState({
  1. String? errorText,
  2. bool isOverridden = false,
  3. String? overrideMessage,
})

Creates the initial validation state for a report cell.

Implementation

CellFormState({
  this.errorText,
  this.isOverridden = false,
  this.overrideMessage,
});