MappingFlow<T, T2> constructor

MappingFlow<T, T2>(
  1. Flow<T> _source,
  2. FlowMapper<T, T2> _mapper
)

Create a Flow that maps the value in the source flow using the mapper function.

Implementation

MappingFlow(
  this._source,
  this._mapper,
);