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