lineTo method

  1. @override
Shape lineTo(
  1. double x,
  2. double y
)
override

Connects a LineCurve from currentPoint to x, y onto the path.

Implementation

@override
Shape lineTo(double x, double y) {
  super.lineTo(x, y);
  return this;
}