ignoreWhen method

Validator<S> ignoreWhen(
  1. Predicate<S> condition
)

Ignore calling validator when the give predicate holds.

Implementation

Validator<S> ignoreWhen(Predicate<S> condition) {
  return _ignoreWhen<S>(condition, this);
}