Untitled
Anonymous
plain_text
03/16/2024 4:51 AM
336 B
13
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