Path constructor

Path(
  1. dynamic points
)

Implementation

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