addUint8 method

dynamic addUint8 (int v)

Implementation

addUint8(int v) {
  grow();
  _view.setUint8(_writePos, v);
  _writePos += 1;
}