sow method

  1. @override
ConicSegment sow(
  1. Offset position
)
override

Shrinks this segment to a point in position.

Implementation

@override
ConicSegment sow(Offset position) => ConicSegment(
      control: position,
      end: position,
      weight: weight,
      tag: tag,
    );