code_timer 1.0.0 code_timer: ^1.0.0 copied to clipboard
Code Execution Timer for Dart and Flutter
import 'package:code_timer/code_timer.dart';
main() async {
CodeTimer.start();
// add your code here
await Future.delayed(const Duration(seconds: 1));
CodeTimer.stop();
}