deselectAllMapFeatures method
Deselects all currently selected map features.
Example:
// Deselect all map features
_locationWindow!.deselectAllMapFeatures();
print("Deselected all map features");
Implementation
@override
void deselectAllMapFeatures() {
final _deselectAllMapFeaturesFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Void Function(Pointer<Void>, ),
void Function(Pointer<Void>, )
>('navigine_sdk_flutter_LocationWindow_deselectAllMapFeatures'));
final _handle = this.handle;
_deselectAllMapFeaturesFfi(_handle, );
}