FxLengthValidator constructor

FxLengthValidator({
  1. bool required = true,
  2. int? exact,
  3. int? min,
  4. int? max,
  5. bool short = false,
})

Implementation

FxLengthValidator({this.required = true,
  this.exact,
  this.min,
  this.max,
  this.short = false});