Skip to content

Instantly share code, notes, and snippets.

@jetaggart
Created January 30, 2019 16:52
Show Gist options
  • Select an option

  • Save jetaggart/c8be68f50dedb88d9e09ae6648ecdf54 to your computer and use it in GitHub Desktop.

Select an option

Save jetaggart/c8be68f50dedb88d9e09ae6648ecdf54 to your computer and use it in GitHub Desktop.
void main() {
generator().listen((i) => print(i));
}
Stream<int> generator() async* {
yield 1;
yield 2;
yield 3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment