VecChar.fromList constructor

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

Implementation

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