lineTo method

dynamic lineTo(
  1. double x,
  2. double y
)

Implementation

lineTo(double x, double y) {
  currentPath.lineTo(x, y);
  return this;
}