VecVecPoint.fromList constructor

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

Implementation

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