StreamedState<T>.from constructor

StreamedState<T>.from(
  1. Stream<T> stream
)

Implementation

StreamedState.from(Stream<T> stream) {
  stateSubject.addStream(stream);
}