Uint32BufferAttribute.fromList constructor

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

Implementation

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