delayed

다은·2021년 5월 24일
0

🎯 Flutter

목록 보기
17/27
Future<bool> _getFutureBool() {
return Future.delayed(Duration(milliseconds: 500)) .then((onValue) => true);
}
// example 2
print('1');
Future.delayed(const Duration(milliseconds: 500), () {
print('Hello, world');
});
print('2');

출처: https://dkanxmstmdgml.tistory.com/153 [달려라 승이]
profile
천방지축 어리둥절 빙글빙글

0개의 댓글