skip method

  1. @override
void skip(
  1. int count
)
override

Move the read position by count bytes.

Implementation

@override
void skip(int count) {
  offset += count;
}