deselectMapFeature method
@brief Deselects a map feature by its feature ID. @param featureId The feature ID from the mapFeaturePickResult @see PickListener "PickListener". @return true if the operation is successful, false otherwise.
Dart code snippet: @snippet location_window_common_example.dart dart_LocationWindow_deselectMapFeature
Implementation
@override
bool deselectMapFeature(String featureId) {
final _deselectMapFeatureFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Uint8 Function(Pointer<Void>, Pointer<Void>),
int Function(Pointer<Void>, Pointer<Void>)
>('navigine_sdk_flutter_LocationWindow_deselectMapFeature__FeatureId'));
final _featureIdHandle = navigine_sdk_flutter_String_ToFfi(featureId);
final _handle = this.handle;
final __resultHandle = _deselectMapFeatureFfi(_handle, _featureIdHandle);
navigine_sdk_flutter_String_ReleaseFfiHandle(_featureIdHandle);
final _result = navigine_sdk_flutter_bool_FromFfi(__resultHandle);
navigine_sdk_flutter_bool_ReleaseFfiHandle(__resultHandle);
return _result;
}