setBackgroundLocationEnabled static method
Implementation
static Future<void> setBackgroundLocationEnabled(bool? enable) async {
Map<String, dynamic> values = {
'enable': enable,
};
await _channel.invokeMethod('setBackgroundLocationEnabled', values);
}