getServiceStatusStream method

Stream<ServiceStatus> getServiceStatusStream()

Fires when the location Service is manually disabled or enabled.

An instance of LocationServiceStatus will be emitted each time the location service is enabled or disabled. Throws an UnimplementedError on the web as the concept of location service doesn't exist on the web platform.

Implementation

Stream<ServiceStatus> getServiceStatusStream() {
  throw UnimplementedError(
      'getServiceStatusStream() has not been implemented.');
}