firstControlPoint property
Offset
get
firstControlPoint
Gets the first control point of the curve.
Implementation
Offset get firstControlPoint => _firstControlPoint.offset;
set
firstControlPoint
(Offset value)
Sets the first control point of the curve.
Implementation
set firstControlPoint(Offset value) {
_firstControlPoint = PdfPoint.fromOffset(value);
}