removeWifi method
Implementation
@override
void removeWifi(int subLocId, String mac) {
final _removeWifiFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Void Function(Pointer<Void>, Int32, NativeString),
void Function(Pointer<Void>, int, NativeString)
>('navigine_sdk_flutter_LocationEditManager_removeWifi__SubLocId_Mac'));
_removeWifiFfi(this.ptr, subLocId, toNativeString(mac));
exception.checkCallResult();
}