selectedMapFeatures property
@brief List of currently selected map feature IDs.
Dart code snippet: @snippet location_window_common_example.dart dart_LocationWindow_getSelectedMapFeatures
Implementation
List<String> get selectedMapFeatures {
final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Pointer<Void> Function(Pointer<Void>),
Pointer<Void> Function(Pointer<Void>)
>('navigine_sdk_flutter_LocationWindow_selectedMapFeatures_get'));
final _handle = this.handle;
final _selectedMapFeaturesHandle = _getFfi(_handle);
final _result = navigine_sdk_flutter_List_String_FromFfi(_selectedMapFeaturesHandle);
navigine_sdk_flutter_List_String_ReleaseFfiHandle(_selectedMapFeaturesHandle);
return _result;
}