deselectAllMapFeatures method

  1. @override
void deselectAllMapFeatures()
override

@brief Deselects all currently selected map features.

Dart code snippet: @snippet location_window_common_example.dart dart_LocationWindow_deselectAllMapFeatures

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, );
}