remove method
void
remove(
- _ValidatorFn validation
Implementation
void remove(_ValidatorFn validation) {
assert(_delegates.contains(validation)); // Should contain the validator
_delegates.remove(validation);
_validator = null; // Reset the validator so that is is rebuilt.
}