VecVecChar.fromList constructor

VecVecChar.fromList(
  1. List<List<int>> pts
)

Implementation

factory VecVecChar.fromList(List<List<int>> pts) => VecVecChar.generate(pts.length, (i) => pts[i]);