stopAutoRefresh method

void stopAutoRefresh()

Stops an active auto refresh process running in the background (if any).

Implementation

void stopAutoRefresh() {
  _autoRefreshTicker?.cancel();
  _autoRefreshTicker = null;
}