Increments position in n bytes.
n
@override void incrementPosition(int n) { _position += n; if (_position > _length) { _length = _position; } }