StreamNotifier<T> constructor

StreamNotifier<T>(
  1. Stream<T> stream
)

Wraps the stream.

Implementation

StreamNotifier(Stream<T> stream) : _stream = stream;