setLocationManagerEnable method

Future<void> setLocationManagerEnable(
  1. bool isEnable
)

Implementation

Future<void> setLocationManagerEnable(bool isEnable) async {
  await instanceManager.channel.invokeMethod(
      'setLocationManagerEnable', <String, bool>{'isEnable': isEnable});
}