Skip to content

Instantly share code, notes, and snippets.

@purplenoodlesoop
Created June 14, 2022 11:15
Show Gist options
  • Save purplenoodlesoop/45bb68ac43f630f45542c39ea6d954ff to your computer and use it in GitHub Desktop.
Save purplenoodlesoop/45bb68ac43f630f45542c39ea6d954ff to your computer and use it in GitHub Desktop.
void foo() {
try {
final double a = 1.0;
throw a;
} on int {
print('int');
} on Object {
print('Object');
}
}
void main() {
foo();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment