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