Skip to content

Instantly share code, notes, and snippets.

@ReginFell
Created December 19, 2019 19:04
Show Gist options
  • Save ReginFell/2e54aec8deb274c492dce404c525d44e to your computer and use it in GitHub Desktop.
Save ReginFell/2e54aec8deb274c492dce404c525d44e to your computer and use it in GitHub Desktop.
void main() async {
var what1 = getFuture();
var what2 = getString();
// what1 is dynamic, what2 is string
}
getFuture() {
return Future.value(1);
}
String getString() {
return "Hello";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment