[Dart] 코드 진행 시간 측정하기

Kogoon·2021년 8월 2일
0

Stopwatch Class

var stopwatch = Stopwatch()..start()..
doSomething();
print(stopwatch.elasped);

Stopwatch Stackoverflow
Tracing Dart Code Performance

-> 시간 기록관련 Stackoverflow 보던 중.. Flutter 기능 중 developer의 Timeline 기능을 알게 됨.

import 'dart:developer';

Timeline.startSync('interesting function');
// iWonderHowLongThisTakes();
Timeline.finishSync();
profile
SE, Cloud, Devops, Python

0개의 댓글