Skip to content

Instantly share code, notes, and snippets.

@gie3d
Created December 2, 2022 12:24
Show Gist options
  • Save gie3d/bb033db822078a8221441c2dbb1e01f6 to your computer and use it in GitHub Desktop.
Save gie3d/bb033db822078a8221441c2dbb1e01f6 to your computer and use it in GitHub Desktop.
bold-kingdom-9328
void main() {
x();
}
void x() {
final stream = Stream.periodic(const Duration(seconds: 1), (i) => i * i)
.take(5);
final subscription = stream.listen((x) {
print(x);
}, onDone: () {
print("done");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment