Skip to content

Instantly share code, notes, and snippets.

@madmag77
Created March 2, 2021 06:44
Show Gist options
  • Save madmag77/1bbcd81dbffe0159d86aab713d520f2b to your computer and use it in GitHub Desktop.
Save madmag77/1bbcd81dbffe0159d86aab713d520f2b to your computer and use it in GitHub Desktop.
[Dart article] Async code exceptions 3
try {
await Future.delayed(Duration(seconds: 1), () {
print('Its ok so far');
}).then((value) {
final _ = 100 ~/ 0;
});
print('Everything is fine!');
} on IntegerDivisionByZeroException {
print('Cant divide to zero');
} finally {
print('Clean-up done');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment