Skip to content

Instantly share code, notes, and snippets.

@incker
Created January 29, 2020 16:17
Show Gist options
  • Save incker/1301a6cb3843cbb5df3a7e731655754f to your computer and use it in GitHub Desktop.
Save incker/1301a6cb3843cbb5df3a7e731655754f to your computer and use it in GitHub Desktop.
void main() {
try{
someFunc();
}catch(String err){
print(err);
}
}
Future<void> someFunc() async {
throw 'test';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment