Untitled
unknown
plain_text
2 years ago
251 B
9
Indexable
void main(){
task1();
task2();
task3();
}
void task1() {
print('task1');
}
void task2() async{
print('task2.1');
await Future.delayed(Duration(seconds: 3));
print('task2.2');
}
void task3(){
print('task3');
}
Editor is loading...
Leave a Comment