■ Future 클래스의 delayed 팩토리 생성자를 사용하는 방법을 보여준다.
▶ 예제 코드 (DART)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import 'dart:async'; void main() async { await printWithDelay('테스트1'); await printWithDelay('테스트2'); await printWithDelay('테스트3'); } const Duration duration = Duration(seconds: 1); Future<void> printWithDelay(String message) async { await Future.delayed(duration); print(message); } |