secondControlPoint property

Offset get secondControlPoint

Gets the second control point of the curve

Implementation

Offset get secondControlPoint => _secondControlPoint.offset;
set secondControlPoint (Offset value)

Sets the second control point of the curve

Implementation

set secondControlPoint(Offset value) {
  _secondControlPoint = PdfPoint.fromOffset(value);
}