advanceBy method
Moves the read position for length characters. length can be negative.
Implementation
void advanceBy(int length) {
_position += length;
}
Moves the read position for length characters. length can be negative.
void advanceBy(int length) {
_position += length;
}