0

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?

Chris G.
  • 23,930
  • 48
  • 177
  • 302

1 Answers1

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