addValidators method
Add validators to the current validators for check
if value of the current state has an error.
Implementation
void addValidators(
List<Validator<Value>> validators, {
bool forceValidation = false,
}) {
_validators.addAll(validators);
_maybeValidate(forceValidation);
}