VecU16.fromList constructor

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

Implementation

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