transformBack method

FieldValidator<T, T> transformBack()

transform from the current type to another type

Implementation

FieldValidator<T, T> transformBack() {
  return FieldValidator<T, T>._(
    validate: (v) => null,
    messages: _messages,
    prevErrors: (v) => errors(v.originalValue),
    validatePrev: (v) => call(v.originalValue),
    convert: (v) => v,
  );
}