TimerUtil constructor

TimerUtil({
  1. int periodic = Duration.millisecondsPerSecond,
  2. required int totalTime,
  3. ValueChanged<int>? callback,
})

Implementation

TimerUtil(
    {this.periodic = Duration.millisecondsPerSecond,
    required this.totalTime,
    this.callback});