skip method Null safety
- int count
override
Move the read position by count
bytes.
Implementation
@override
void skip(int count) {
offset += count;
}
Move the read position by count
bytes.
@override
void skip(int count) {
offset += count;
}