log method

FormFieldValidator<T> log({
  1. String log(
    1. T? value
    )?,
})

Logs the value during the validation process.

Implementation

FormFieldValidator<T> log({String Function(T? value)? log}) {
  return FormBuilderValidators.log(log: log);
}