v1.0.4
code_timer
Dart および Flutter 向けのコード実行タイマー
6いいね 4030日間ダウンロード125Pub ポイント
AndroidiOSWebmacOSWindowsLinux
melodysdreamj/code_timer open-source repository details.
以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
dart pub add code_timer
CodeTimer.start();
// add your code here
await Future.delayed(const Duration(seconds: 1));
CodeTimer.stop();
you will see console like this
Execution time: 1004 ms
CodeTimer.start();
// add your code here
await Future.delayed(const Duration(seconds: 1));
CodeTimer.record(); // optional
// add your code here
await Future.delayed(const Duration(seconds: 1));
CodeTimer.stop();
you will see console like this
Record time: 1004 ms
Execution time: 2007 ms