appendUint8 method

void appendUint8(
  1. List<int> values
)

Implementation

void appendUint8(List<int> values) {
  _bufferPosition += values.length;
  _ensureBuffer();
  _bufferData.addAll(values);
}