checkLocationServiceEnabled method
Returns true if the device's location services are currently enabled.
This is independent of app-level permission — the user may have location permission granted but still have location services turned off globally.
Implementation
Future<bool> checkLocationServiceEnabled() async {
throw UnimplementedError(
'checkLocationServiceEnabled() has not been implemented.',
);
}