Created
May 30, 2020 06:53
-
-
Save it-one-mm/76bed5e89788ec60105db08c9d6e574e to your computer and use it in GitHub Desktop.
Starting Code for Futures/Async/Await Demo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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