peekByte method

  1. @override
int peekByte(
  1. int index
)
override

Gives a peek of the byte of current index and does not increments the current index

Implementation

@override
int peekByte(int index) {
  return _buffer[offset];
}