Skip to content

Instantly share code, notes, and snippets.

@dnys1
Last active October 3, 2022 18:53
Show Gist options
  • Save dnys1/4eb15f7849417ed2b15ec9347e82c592 to your computer and use it in GitHub Desktop.
Save dnys1/4eb15f7849417ed2b15ec9347e82c592 to your computer and use it in GitHub Desktop.
neapolitan-marble-4335

neapolitan-marble-4335

Created with <3 with dartpad.dev.

void main() async {
final future = Future.error('error');
try {
await future;
} catch (e) {
print('Caught $e');
}
try {
await future;
} catch (e) {
print('Caught $e again');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment