ByteArray.fromList constructor

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

Implementation

ByteArray.fromList(List<int> elements)
  : _bytes = Uint8List.fromList(elements);