autoConnect abstract method
Returns a Stream that automatically connects (at most once) to this ConnectableStream when the first Observer subscribes.
To disconnect from the source Stream, provide a connection
callback and
cancel the subscription
at the appropriate time.
Implementation
Stream<T> autoConnect({
void Function(StreamSubscription<T> subscription) connection,
});