ListValidator<T> constructor

const ListValidator<T>(
  1. Validator<T> itemValidator, {
  2. int? minLength,
  3. int? maxLength,
  4. bool required = true,
})

Implementation

const ListValidator(
  this.itemValidator, {
  this.minLength,
  this.maxLength,
  this.required = true,
});