endPoint property

ArcGISPoint? endPoint

The end point of the last segment in the part. Returns null if the collection is empty.

Implementation

ArcGISPoint? get endPoint {
  final objectHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ImmutablePart_getEndPoint(
      _handle,
      errorHandler,
    );
  });
  return ArcGISPoint._fromHandle(
    objectHandle,
  );
}