MyLengthValidator constructor

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

Implementation

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