point property

ArcGISPoint point

The position of the vertex in the SpatialReference of the associated ArcGISMapViewController.

Implementation

ArcGISPoint get point {
  final objectHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_GeometryEditorVertex_getPoint(
      _handle,
      errorHandler,
    );
  });
  return ArcGISPoint._fromHandle(
    objectHandle,
  )!;
}