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();