secondControlPoint property

Offset secondControlPoint

Gets the second control point of the curve

Implementation

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

Sets the second control point of the curve

Implementation

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