stopTimer method

void stopTimer()

Stops the timer.

Implementation

void stopTimer() {
  if (_checkQueueTimer != null) {
    _checkQueueTimer!.cancel();
    _checkQueueTimer = null;
  }
}