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'));
final _handle = this.handle;
_removeBleGeneratorsFfi(_handle, );
}