sow method

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

Shrinks this segment to a point in position.

Implementation

@override
CubicSegment sow(Offset position) => CubicSegment(
      control1: position,
      control2: position,
      end: position,
      tag: tag,
    );