ByteArray constructor

ByteArray(
  1. Uint8List array
)

Implementation

ByteArray(Uint8List array) {
  _bytes = Uint8List.fromList(array);
}