editEddystone method
void
editEddystone()
override
Implementation
@override
void editEddystone(int subLocId, String namespaceId, String instanceId, Point point, String name, int? power) {
final _editEddystoneFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Void Function(Pointer<Void>, Int32, NativeString, NativeString, PointNative, NativeString, Pointer<Void>),
void Function(Pointer<Void>, int, NativeString, NativeString, PointNative, NativeString, Pointer<Void>)
>('navigine_sdk_flutter_LocationEditManager_editEddystone__SubLocId_NamespaceId_InstanceId_Point_Name_Power'));
_editEddystoneFfi(this.ptr, subLocId, toNativeString(namespaceId), toNativeString(instanceId), PointImpl.toNative(point), toNativeString(name), toNativePtrInt32(power));
exception.checkCallResult();
}