window method

UByteReader window(
  1. int count
)

Implementation

UByteReader window(int count) {
  _require(count);
  final UByteReader child = UByteReader(_bytes, start: _pos, end: _pos + count);
  _pos += count;
  return child;
}