TimerFController constructor

TimerFController({
  1. DateTime? startTime,
  2. Duration? duration,
  3. String timeFormate = "HH:MM:SS:ms",
  4. Duration? listeningDelay,
  5. bool isCountdown = true,
  6. void statusListener(
    1. AppTimerStatus
    )?,
  7. void progress0to1Listener(
    1. double
    )?,
  8. void millisecondsListener(
    1. int
    )?,
  9. void timeListener(
    1. String
    )?,
})

Implementation

TimerFController({
  this.startTime,
  this.duration,
  this.timeFormate = "HH:MM:SS:ms",
  this.listeningDelay,
  this.isCountdown = true,
  this.statusListener,
  this.progress0to1Listener,
  this.millisecondsListener,
  this.timeListener,
}) {
  _startAddingNumbers();
}