mapObject property

MapObject get mapObject
override

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 _mapObjectHandle = _getFfi(this.ptr);
    final _result = MapObject$Impl.fromNativePtr(_mapObjectHandle);
    exception.checkCallResult();
    return _result;
}