transform method
Transforms the value before applying the validator.
Implementation
FormFieldValidator<T> transform(T Function(T? value) transformer) {
return FormBuilderValidators.transform(transformer, this);
}
Transforms the value before applying the validator.
FormFieldValidator<T> transform(T Function(T? value) transformer) {
return FormBuilderValidators.transform(transformer, this);
}