updateScanningConfig method
Implementation
@override
Future<void> updateScanningConfig(FlutterScanningConfig newConfig) {
// This method doesn't exist in the API, we can use wifi/bluetooth methods instead
_api.updateWifiEnabled(newConfig.wifiScanningEnabled);
_api.updateBluetoothEnabled(newConfig.bleScanningEnabled);
return Future.value();
}