Skip to content

Instantly share code, notes, and snippets.

@dozykeys
Created February 5, 2020 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dozykeys/0acf5976a0c4a30700d3185c74e9b0d5 to your computer and use it in GitHub Desktop.
Save dozykeys/0acf5976a0c4a30700d3185c74e9b0d5 to your computer and use it in GitHub Desktop.
Starting Code for Futures/Async/Await Demo
import 'dart:io';
void main() {
performTasks();
}
void performTasks() {
task1();
task2();
task3();
}
void task1() {
String result = 'task 1 data';
print('Task 1 complete');
}
void task2() {
String result = 'task 2 data';
print('Task 2 complete');
}
void task3() {
String result = 'task 3 data';
print('Task 3 complete');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment