append method

Uint8List append(
  1. int value
)

Implementation

Uint8List append(int value) {
  _bytes = ByteUtil.combine(arrayFirst: _bytes, arraySecond: _toArray(value));
  return _bytes;
}