appendUint8List function

Uint8List appendUint8List(
  1. Uint8List x,
  2. Uint8List y
)

Returns concatenation of x and y.

Implementation

Uint8List appendUint8List(Uint8List x, Uint8List y) =>
    Uint8List.fromList(x + y);