Skip to content

Instantly share code, notes, and snippets.

@dnys1
Created December 2, 2022 20:28
Show Gist options
  • Save dnys1/6ce672a07affca8c03c078c0aeec4553 to your computer and use it in GitHub Desktop.
Save dnys1/6ce672a07affca8c03c078c0aeec4553 to your computer and use it in GitHub Desktop.
hopeful-zephyr-4541
import 'dart:async';
void main() {
final controller = StreamController<void>();
controller.close();
try {
controller.add(null);
} catch (e) {
print(e.runtimeType);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment