stopBackgroundRefresh method

void stopBackgroundRefresh()

Stop background token refresh

Implementation

void stopBackgroundRefresh() {
  _backgroundRefreshTimer?.cancel();
  _backgroundRefreshTimer = null;
  _fgbgSubscription?.cancel();
  _fgbgSubscription = null;
}