skip method
Moves the read marker forwards by the given numberOfBytes
Implementation
void skip(int numberOfBytes) {
_readPos += numberOfBytes;
}
Moves the read marker forwards by the given numberOfBytes
void skip(int numberOfBytes) {
_readPos += numberOfBytes;
}