Skip to content

Instantly share code, notes, and snippets.

@kwalrath
Last active January 31, 2020 22:07
Show Gist options
  • Save kwalrath/52256fdd52dee63fd84dc92568321243 to your computer and use it in GitHub Desktop.
Save kwalrath/52256fdd52dee63fd84dc92568321243 to your computer and use it in GitHub Desktop.
Gists for streams article
final myStream = NumberCreator().stream;
final subscription = myStream.listen(
(data) => print('Data: $data'),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment