ValidityState.constructor constructor

ValidityState.constructor({
  1. bool? badInput,
  2. bool? customError,
  3. bool? patternMismatch,
  4. bool? rangeOverflow,
  5. bool? rangeUnderflow,
  6. bool? stepMismatch,
  7. bool? tooLong,
  8. bool? tooShort,
  9. bool? typeMismatch,
  10. bool? valid,
  11. bool? valueMissing,
})

Implementation

ValidityState.constructor({
  this.badInput,
  this.customError,
  this.patternMismatch,
  this.rangeOverflow,
  this.rangeUnderflow,
  this.stepMismatch,
  this.tooLong,
  this.tooShort,
  this.typeMismatch,
  this.valid,
  this.valueMissing,
});