stopApiPolling method

void stopApiPolling()

Implementation

void stopApiPolling() {
  if (_timer != null) {
    _timer?.cancel();
    _timer = null;
  }
}