Uint8ClampedList.fromList 构造函数

Uint8ClampedList.fromList(
  1. List<int> elements
)

创建一个与 elements 列表大小相同的 Uint8ClampedList,并在需要时复制值以进行夹断。

当复制值时,值被夹断以适应列表,这与存储值时夹断的方式相同。

列表由包含精确 elements.length 个字节的 ByteBuffer 支持。

实现

external factory Uint8ClampedList.fromList(List<int> elements);