Dart Computer Programming for Intermediates: 05 StreamSubscription

Published: 10 March 2019
on channel: Dash to Dartlang
1,527
27

StreamSubscription is created when you use a listen method. If you don't instantiate it explicitly, it is created in the background, implicitly. StreamSubscription let's us manipulate the StreamController, which let's us add Streams to be controlled.

code: https://gist.github.com/dashtodartlan...