append method

Uint8List append(
  1. int value
)

Implementation

Uint8List append(int value) {
  // if (_bytes == null) {
  //   _bytes = _toArray(value);
  // } else {
  //   _bytes = _combine(_bytes, _toArray(value));
  // }
  // return _bytes;
  // return _combine(_bytes, _toArray(value));
  _bytes = ByteUtil.combine(_bytes, _toArray(value));
  return _bytes;
}