combine method

  1. @override
Validator<T> combine(
  1. Validator<T> other
)
override

Implementation

@override
Validator<T> combine(Validator<T> other) {
  return CompositeValidator([...validators, other]);
}