removeWifiRtt method

  1. @override
void removeWifiRtt(
  1. int subLocId,
  2. String mac
)
override

Implementation

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