stream property
A broadcast stream representation of a StateNotifier
.
Implementation
Stream<T> get stream {
_controller ??= StreamController<T>.broadcast();
return _controller!.stream;
}
A broadcast stream representation of a StateNotifier
.
Stream<T> get stream {
_controller ??= StreamController<T>.broadcast();
return _controller!.stream;
}