VecPoint.fromList constructor

VecPoint.fromList(
  1. List<Point> pts
)

Implementation

factory VecPoint.fromList(List<Point> pts) => VecPoint.generate(pts.length, (i) => pts[i], dispose: false);