skip method
Skips the first count chunks.
count the number of chunks to skip
Implementation
ByteStream skip(int count) {
return ByteStream._(_stream.skip(count));
}
Skips the first count chunks.
count the number of chunks to skip
ByteStream skip(int count) {
return ByteStream._(_stream.skip(count));
}