add method

void add(
  1. Uint8List x
)

Appends x to data.

Implementation

void add(Uint8List x) => data = Uint8List.fromList((data ?? []) + x);