mapObject property

MapObject get mapObject
override

@brief Picked map object @see MapObject "MapObject".

Dart code snippet: @snippet location_window_interaction_example.dart dart_MapObjectPickResult_getMapObject

Implementation

MapObject get mapObject {
    final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
        Pointer<Void> Function(Pointer<Void>),
        Pointer<Void> Function(Pointer<Void>)
      >('navigine_sdk_flutter_MapObjectPickResult_mapObject_get'));

    final _handle = this.handle;
    final _mapObjectHandle = _getFfi(_handle);
    final _result = navigine_sdk_flutter_MapObject_FromFfi(_mapObjectHandle);
    navigine_sdk_flutter_MapObject_ReleaseFfiHandle(_mapObjectHandle);
    return _result;
}