fromArrays static method
Creates a ByteStream from multiple byte arrays.
byteArrays the arrays of bytes
Implementation
static ByteStream fromArrays(List<List<int>> byteArrays) {
return ByteStream._(Stream.fromIterable(byteArrays));
}
Creates a ByteStream from multiple byte arrays.
byteArrays the arrays of bytes
static ByteStream fromArrays(List<List<int>> byteArrays) {
return ByteStream._(Stream.fromIterable(byteArrays));
}