Path constructor
Path(
- dynamic points
Implementation
Path(points) : super() {
if (points != null) {
setFromPoints(points);
}
}
Path(points) : super() {
if (points != null) {
setFromPoints(points);
}
}