Skip to content

Instantly share code, notes, and snippets.

@rapPayne
Last active March 30, 2019 19:27
Show Gist options
  • Select an option

  • Save rapPayne/32973a9503e5acfaf4728874b1d83550 to your computer and use it in GitHub Desktop.

Select an option

Save rapPayne/32973a9503e5acfaf4728874b1d83550 to your computer and use it in GitHub Desktop.
Futures - Async after
Future<Bar> someFunction() async {
Foo theIncomingData = await somethingThatReturnsAFuture();
return new Bar();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment