ValidityStateFlags constructor

ValidityStateFlags({
  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? valueMissing,
})

Implementation

factory ValidityStateFlags({
  _i2.bool? badInput,
  _i2.bool? customError,
  _i2.bool? patternMismatch,
  _i2.bool? rangeOverflow,
  _i2.bool? rangeUnderflow,
  _i2.bool? stepMismatch,
  _i2.bool? tooLong,
  _i2.bool? tooShort,
  _i2.bool? typeMismatch,
  _i2.bool? valueMissing,
}) =>
    ValidityStateFlags._(
      badInput: badInput,
      customError: customError,
      patternMismatch: patternMismatch,
      rangeOverflow: rangeOverflow,
      rangeUnderflow: rangeUnderflow,
      stepMismatch: stepMismatch,
      tooLong: tooLong,
      tooShort: tooShort,
      typeMismatch: typeMismatch,
      valueMissing: valueMissing,
    );