Skip to content

Instantly share code, notes, and snippets.

@tahlin-notes
Created November 17, 2020 06:33
Show Gist options
  • Save tahlin-notes/1b1315ede035213f1f5f262bea097d04 to your computer and use it in GitHub Desktop.
Save tahlin-notes/1b1315ede035213f1f5f262bea097d04 to your computer and use it in GitHub Desktop.
Sample create Future
void main() {
// final sampleFuture = Future<T>(() {});
final sampleFuture = Future<void>(() {
print('2');
});
print('1');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment