Foggy day
[Flutter] flutter 코드 실행시간 체크 본문
// Stopwatch 클래스 생성
Stopwatch stopwatch = new Stopwatch();
// Stopwatch 시작
stopwatch.start();
// doSomething()
// 시간 체크
print('doSomething() executed in ${stopwatch.elapsed}');
// 스톱워치 정지
stopwatch.stop();
'Flutter > Flutter 기타' 카테고리의 다른 글
[Flutter] IOS - no such module 'Flutter' (0) | 2023.08.30 |
---|---|
[Flutter] EventChannel - Android (0) | 2023.08.29 |
[Flutter] MethodChannel - Android (0) | 2023.08.22 |
[Flutter] 버전 변경(version change) (0) | 2023.07.18 |
[Flutter] Error running pod install 에러 해결책 (0) | 2023.02.28 |