map

Validator<R> map<R>(

  1. R transform(
    1. T
    )
)

Transform the validated value

Implementation

Validator<R> map<R>(R Function(T) transform) =>
    _MapValidator(this, transform);