Skip to content

Instantly share code, notes, and snippets.

@mdebbar
Created January 24, 2020 17:48
Show Gist options
  • Select an option

  • Save mdebbar/00d118a895fcd69f41d3852b089f96cb to your computer and use it in GitHub Desktop.

Select an option

Save mdebbar/00d118a895fcd69f41d3852b089f96cb to your computer and use it in GitHub Desktop.
bool foo() {
Future.value(10).then((_) {
return true;
}).catchError((_) {
return false;
});
}
void main() {
print(foo());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment