map<T> method

ResultShape<T> map<T>(
  1. T mapper(
    1. R
    )
)

Converts decoded values into a record or application model.

Implementation

ResultShape<T> map<T>(T Function(R) mapper) => _MappedResult(this, mapper);