removeWifiGenerator method
Method removes a specific Wi-Fi generator by its identifier.
id Unique identifier of the Wi-Fi generator to remove.
Example:
// Remove specific Wi-Fi generator
_measurementManager!.removeWifiGenerator(wifiId);
print("Removed Wi-Fi generator: $wifiId");
Implementation
@override
void removeWifiGenerator(String id) {
final _removeWifiGeneratorFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Void Function(Pointer<Void>, NativeString),
void Function(Pointer<Void>, NativeString)
>('navigine_sdk_flutter_MeasurementManager_removeWifiGenerator__Id'));
_removeWifiGeneratorFfi(this.ptr, toNativeString(id));
exception.checkCallResult();
}