AllValidator constructor

AllValidator(
  1. Iterable<IValidator> validators, {
  2. bool nullable = false,
  3. bool optional = false,
  4. String? message,
  5. bool collecting = false,
})

Implementation

AllValidator(
  super.validators, {
  super.nullable,
  super.optional,
  super.message,
  this.collecting = false,
});