all<T, E> static method
Creates a validator that requires ALL rules to pass (AND logic).
Fails fast on the first error.
final validator = Validate.all<String, String>([
requiredRule,
emailRule,
]);
Implementation
static Formix<T, E> all<T, E>(List<Formix<T, E>> validators) =>
AllOf(validators);