Last active
March 30, 2019 19:27
-
-
Save rapPayne/32973a9503e5acfaf4728874b1d83550 to your computer and use it in GitHub Desktop.
Futures - Async after
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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