endPoint property

Offset endPoint

Gets the ending point of the curve.

Implementation

Offset get endPoint => _endPoint.offset;
void endPoint=(Offset value)

Sets the ending point of the curve.

Implementation

set endPoint(Offset value) {
  _endPoint = PdfPoint.fromOffset(value);
}