ValueConnectableStream<T> constructor
Constructs a Stream which only begins emitting events when the connect method is called, this Stream acts like a BehaviorSubject.
Implementation
ValueConnectableStream(Stream<T> source, {bool sync = false})
: super(source, BehaviorSubject<T>(sync: sync));