addInt8 method

dynamic addInt8 (int v)

Implementation

addInt8(int v) {
  grow();
  _view.setInt8(_writePos, v);
  _writePos += 1;
}