map<R> method

Stream<R> map<R>(
  1. R convert(
    1. T event
    )
)

Implementation

Stream<R> map<R>(R Function(T event) convert) {
  return _controller.stream.map(convert);
}