isLocationServiceEnabled method

Future<bool> isLocationServiceEnabled()

Returns a Future containing a bool value indicating whether location services are enabled on the device.

Implementation

Future<bool> isLocationServiceEnabled() {
  throw UnimplementedError(
    'isLocationServiceEnabled() has not been implemented.',
  );
}