stop method

void stop()

Implementation

void stop() {
  final state = _state;
  if (state == null) {
    throw Exception('The controller isn\' associated to a Geolocation');
  }

  state._stopObservingStatus();
}