Uint16BufferAttribute.fromList constructor

Uint16BufferAttribute.fromList(
  1. List<int> list,
  2. int itemSize, [
  3. bool normalized = false
])

Implementation

factory Uint16BufferAttribute.fromList(List<int> list, int itemSize,[bool normalized = false]){
  return Uint16BufferAttribute(Uint16Array.fromList(list),itemSize,normalized);
}