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