bind method

  1. @override
Stream<S> bind(
  1. Stream<T> stream
)
override

Binds the transformer to the provided stream.

Implementation

@override
Stream<S> bind(final Stream<T> stream) =>
    Stream<S>.eventTransformed(stream, mapSink);