Uint8BufferAttribute.fromList constructor

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

Implementation

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