map method
Maps each chunk of bytes using the provided function.
mapper
the function to apply to each chunk
Implementation
ByteStream map(List<int> Function(List<int>) mapper) {
return ByteStream._(_stream.map(mapper));
}
Maps each chunk of bytes using the provided function.
mapper
the function to apply to each chunk
ByteStream map(List<int> Function(List<int>) mapper) {
return ByteStream._(_stream.map(mapper));
}