position property
Cluster center in metrics coordinates.
Implementation
LocationPoint get position {
final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
LocationPointNative Function(Pointer<Void>),
LocationPointNative Function(Pointer<Void>)
>('navigine_sdk_flutter_ClusterMapObject_position_get'));
final _positionHandle = _getFfi(this.ptr);
final _result = LocationPointImpl.fromNative(_positionHandle);
exception.checkCallResult();
return _result;
}