Rewind the read head of the stream by the given number of bytes.
@override void rewind([int length = 1]) { _position -= length; if (_position < 0) { _position = 0; } }