timerTime property

set timerTime (int timerTime)

Set the timer time to a new value and restarts the timer.

Implementation

set timerTime(int timerTime) {
  _timerTime = timerTime;
  if (_checkQueueTimer != null) {
    _checkQueueTimer?.cancel();
    startTimer();
  }
}