FLUTTER ECOSYSTEM

melodysdreamj/code_timer

melodysdreamj/code_timer open-source repository details.

code_timer प्रोजेक्ट कवर
Stars
1
Forks
0
अंतिम पुश (UTC)
9 मई 2024
प्रोजेक्ट स्थिति
सक्रिय
june lee GitHub avatar
GITHUB User

june lee ↗

A developer in Songdo who loves cafes and good restaurants.

भाषाएँDart

इस रिपॉज़िटरी के पैकेज

मूल README

यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।

README खोलें / बंद करें

installation

dart pub add code_timer

usage

  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

usage2

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