Skip to content

Instantly share code, notes, and snippets.

@ReginFell
Last active December 19, 2019 18:49
Show Gist options
  • Save ReginFell/0c5ab2f758b753d28bb09bc8f13ecd36 to your computer and use it in GitHub Desktop.
Save ReginFell/0c5ab2f758b753d28bb09bc8f13ecd36 to your computer and use it in GitHub Desktop.
Future<dynamic> getFuture() {
return Future.value(int);
}
Future<String> why() {
return getFuture();
}
void main() async {
await why();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment