Created
August 20, 2022 10:17
-
-
Save mym0404/fa1989271eca1a14807fea7c548c84fc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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