Skip to content

Instantly share code, notes, and snippets.

@kwalrath
Last active February 10, 2020 22:44
Show Gist options
  • Save kwalrath/47b0b093620def0ef842c88bdd96aee5 to your computer and use it in GitHub Desktop.
Save kwalrath/47b0b093620def0ef842c88bdd96aee5 to your computer and use it in GitHub Desktop.
final myStream = NumberCreator().stream.asBroadcastStream();
final subscription = myStream.listen(
(data) => print('Data: $data'),
);
final subscription2 = myStream.listen(
(data) => print('Data again: $data'),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment