mapObject property
Picked map object MapObject.
Example:
MapObject mapObject = mapObjectPickResult.mapObject;
print(" Object type: ${mapObject.runtimeType}");
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;
}