cancelTimer method

void cancelTimer()

Implementation

void cancelTimer() {
  if (_timer.isActive) {
    _timer.cancel();
  }
}