LengthValidator<T> constructor

LengthValidator<T>({
  1. int? min,
  2. int? max,
})

Implementation

LengthValidator({
  this.min,
  this.max,
});