Mapper<S, T> typedef

Mapper<S, T> = FutureOr<T> Function(S data)

Mapper maps S into T.

Implementation

typedef FutureOr<T> Mapper<S, T>(S data);