IsLocationEnabled property

Future<bool?> get IsLocationEnabled

Implementation

static Future<bool?> get IsLocationEnabled async {
  final bool? version = await _channel.invokeMethod('IsLocationEnabled');
  return version;
}