skip method

ByteStream skip(
  1. int count
)

Skips the first count chunks.

count the number of chunks to skip

Implementation

ByteStream skip(int count) {
  return ByteStream._(_stream.skip(count));
}