where method
Filters chunks of bytes using the provided predicate.
predicate
the predicate function
Implementation
ByteStream where(bool Function(List<int>) predicate) {
return ByteStream._(_stream.where(predicate));
}
Filters chunks of bytes using the provided predicate.
predicate
the predicate function
ByteStream where(bool Function(List<int>) predicate) {
return ByteStream._(_stream.where(predicate));
}