Skip to content

Instantly share code, notes, and snippets.

@Zimins
Last active September 27, 2019 13:23
Show Gist options
  • Save Zimins/c9f8d239624b7b57771ef08580c35edc to your computer and use it in GitHub Desktop.
Save Zimins/c9f8d239624b7b57771ef08580c35edc to your computer and use it in GitHub Desktop.
exampleForDartFuture
void main() {
print("main started");
requestApi().then((result) {
print(result);
});
print("main finished");
}
Future<String> requestApi() async {
return "result";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment