SyncStream<T>.controller constructor
SyncStream<T>.controller ({})
This stream doesn't subscribe to an upstream branch for updates, but can still be updated.
Implementation
SyncStream.controller({FutureOr<T>? initialValue, required String debugName, Consumer<T>? onChange})
: this._(current: initialValue, debugName: debugName, onChange: onChange);