Uint8ClampedBufferAttribute.fromList constructor

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

Implementation

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