FlowMapper<T, T2> typedef Null safety

FlowMapper<T, T2> = T2 Function(T value)

A function used to map from one flow to another

Implementation

typedef FlowMapper<T, T2> = T2 Function(T value);