point property

ArcGISPoint point

The location of the point represented by this GeometryEditorMidVertex in the SpatialReference of the associated ArcGISMapViewController.

Implementation

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