skipBytes method

  1. @protected
void skipBytes(
  1. int count
)

Implementation

@protected
void skipBytes(int count) {
  _offset += count;
  if (_offset > buffer.length) {
    throw RangeError.range(_offset, 0, buffer.length, 'offset');
  }
}