removeBleGenerators method
Method removes all BLE beacon generators.
Example:
// Remove all BLE generators
_measurementManager!.removeBleGenerators();
print("Removed all BLE generators");
Implementation
@override
void removeBleGenerators() {
final _removeBleGeneratorsFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Void Function(Pointer<Void>, ),
void Function(Pointer<Void>, )
>('navigine_sdk_flutter_MeasurementManager_removeBleGenerators'));
_removeBleGeneratorsFfi(this.ptr, );
exception.checkCallResult();
}