removeLocationGenerator method
@brief Method removes a specific location generator by its identifier. @param id Unique identifier of the location generator to remove.
Dart code snippet: @snippet measurement_manager_example.dart dart_MeasurementManager_removeLocationGenerator
Implementation
@override
void removeLocationGenerator(String id) {
final _removeLocationGeneratorFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Void Function(Pointer<Void>, Pointer<Void>),
void Function(Pointer<Void>, Pointer<Void>)
>('navigine_sdk_flutter_MeasurementManager_removeLocationGenerator__Id'));
final _idHandle = navigine_sdk_flutter_String_ToFfi(id);
final _handle = this.handle;
_removeLocationGeneratorFfi(_handle, _idHandle);
navigine_sdk_flutter_String_ReleaseFfiHandle(_idHandle);
}