When adding a listener to a RxDart PublishSubject
I get a StreamSubscription
. I can then use the StreamSubscription
to pause and resume, is there any way to do that with a StreamBuilder
?
Asked
Active
Viewed 924 times
1 Answers
0
No.
You cannot pause listening to a Stream
using StreamBuilder
. If you want to, you will have to manually subscribe to your Stream
and call pause
yourself.

Rémi Rousselet
- 256,336
- 79
- 519
- 432