関数の処理時間を測ったりするのに便利。
main.dart
final stopWatch = Stopwatch();
stopWatch.start();
// 実行したい処理
stopWatch.stop();
print(stopWatch.elapsedMicroseconds.toString() + '[micro_s]');
とすれば、計測時間[ms](elapsed time)を表示できる。elapsedMilliseconds
はms, elapsedMicroseconds
はus単位。
▼公式リファレンス
https://api.dart.dev/stable/2.7.1/dart-core/Stopwatch-class.html