stop method

void stop()

Stops the timer without disposing the keeper. Safe to call multiple times. Call start to resume.

Implementation

void stop() {
  _timer?.cancel();
  _timer = null;
  _log(LogLevel.debug, 'TokenRefreshTimer stopped');
}