startPoint property

ArcGISPoint startPoint

The start point of the segment.

Implementation

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