Uint8List.fromList constructor Null safety

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

Creates a Uint8List with the same length as the elements list and copies over the elements.

Values are truncated to fit in the list when they are copied, the same way storing values truncates them.

The list is backed by a ByteBuffer containing precisely elements.length bytes.

Implementation

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