cleanup method

void cleanup()

Clean up resources (for singleton - doesn't dispose ChangeNotifier)

Implementation

void cleanup() {
  _stopMonitoring();
  _hideOverlay();
  //_overlayContext = null;
  _currentSpeed = null;
  _isRunning = false;
  _isPaused = false;
  _isVisible = true;
  notifyListeners();
}