Skip to content

Instantly share code, notes, and snippets.

@yukuku
Created July 14, 2021 09:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yukuku/face51645b34a22fe5164935580601e6 to your computer and use it in GitHub Desktop.
Save yukuku/face51645b34a22fe5164935580601e6 to your computer and use it in GitHub Desktop.
Future<dynamic> f() async {
throw 'f';
}
dynamic g() {
throw 'g';
}
void main() async {
try {
f();
} catch (e) {
print('exception: $e');
}
try {
g();
} catch (e) {
print('exception: $e');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment