Foggy day

[Flutter] flutter 코드 실행시간 체크 본문

Flutter/Flutter 기타

[Flutter] flutter 코드 실행시간 체크

jinhan38 2022. 2. 17. 10:18
    // Stopwatch 클래스 생성
    Stopwatch stopwatch = new Stopwatch();
    
    // Stopwatch 시작
    stopwatch.start();
	
	// doSomething()
    
    // 시간 체크 
	print('doSomething() executed in ${stopwatch.elapsed}');
    
    // 스톱워치 정지
    stopwatch.stop();