chain<T, E> static method
Creates a validator that chains validators sequentially.
Only proceeds to the next validator if the previous passes.
final validator = Validate.chain<String, String>([
requiredRule,
emailRule,
uniqueEmailRule,
]);
Implementation
static Formix<T, E> chain<T, E>(List<Formix<T, E>> validators) =>
Chain(validators);