Skip to content

Instantly share code, notes, and snippets.

@mym0404
Created August 20, 2022 10:17
Show Gist options
  • Save mym0404/fa1989271eca1a14807fea7c548c84fc to your computer and use it in GitHub Desktop.
Save mym0404/fa1989271eca1a14807fea7c548c84fc to your computer and use it in GitHub Desktop.
void main() async {
runZonedGuarded(() {
print('Hi I am in a new zone');
throw 1;
}, (e, s) {
print(e);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment