Path constructor

Path(
  1. dynamic points
)

Implementation

Path(points) : super() {
  if (points != null) {
    setFromPoints(points);
  }
}