Untitled

 avatar
unknown
plain_text
a year ago
251 B
5
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