transform method

Stream<S> transform<S>(StreamTransformer<T, S> streamTransformer)

Chains this stream as the input of the provided StreamTransformer.

Returns the result of streamTransformer.bind itself.

The streamTransformer can decide whether it wants to return a broadcast stream or not.

Source

Stream<S> transform<S>(StreamTransformer<T, S> streamTransformer) {
  return streamTransformer.bind(this);
}

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-async/Stream/transform.html