skip method

void skip(
  1. int numberOfBytes
)

Moves the read marker forwards by the given numberOfBytes

Implementation

void skip(int numberOfBytes) => _readPos += numberOfBytes;