Int8BufferAttribute.fromList constructor

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

Implementation

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