I am looking for an alternative of BehaviorSubject from RxDart in Native Dart Streams. To be more particular: I want to get the previously added value to the Stream when I listen to.
Example flow: 1 -> 2 -> 3 -> * -> 4 -> 5 ...
* is point when I started to listed. In BehaviorSubject I get 3 when I start to listen. But with StreamController the first value I get is 4.