Skip to content

Instantly share code, notes, and snippets.

@it-one-mm
Created May 30, 2020 06:53
Show Gist options
  • Save it-one-mm/76bed5e89788ec60105db08c9d6e574e to your computer and use it in GitHub Desktop.
Save it-one-mm/76bed5e89788ec60105db08c9d6e574e 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