ByteArray constructor

ByteArray(
  1. List<int> array
)

Implementation

ByteArray(List<int> array) {
  _bytes = Uint8List.fromList(array);
}