■ Future 클래스의 delayed 팩토리 생성자를 사용하는 방법을 보여준다.
▶ 예제 코드 (DART)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
import 'dart:async'; void main() { printOne(); printTwo(); printThree(); } void printOne() { print('One'); } void printTwo() async { Future.delayed(Duration(seconds: 1), () { print('Future!!'); }); print('Two'); } void printThree() { print('Three'); } |