startPoint property

Offset startPoint

Gets the starting point of the curve

Implementation

Offset get startPoint => _startPoint.offset;
void startPoint=(Offset value)

Sets the starting point of the curve

Implementation

set startPoint(Offset value) {
  _startPoint = PdfPoint.fromOffset(value);
}