stop method

void stop()

Implementation

void stop() {
  if (_isRunning) {
    _timer.cancel();
    _isRunning = false;
  }
}