【Flutter】Stopwatchライブラリの使い方

関数の処理時間を測ったりするのに便利。

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

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です