fromArrays static method

ByteStream fromArrays(
  1. List<List<int>> byteArrays
)

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));
}