isLocationServicesEnabled static method

Future<bool> isLocationServicesEnabled()

Checks whether location services are enabled.

Implementation

static Future<bool> isLocationServicesEnabled() async {
  final bool result =
      await _channel.invokeMethod(OkHiNativeMethod.isLocationServicesEnabled);
  return result;
}