ByteStream.fromUint8ListStream constructor

ByteStream.fromUint8ListStream(
  1. Stream<Uint8List> stream
)

Creates a ByteStream from a Stream of Uint8List.

stream the stream of byte data

A stream of bytes similar to Java's InputStream/OutputStream.

This class provides a stream-based interface for reading and writing bytes, wrapping Dart's Stream<List<int>> with Java-like methods.

Example usage:

ByteStream stream = ByteStream.fromList([72, 101, 108, 108, 111]);
List<int> data = await stream.readAll();
print(String.fromCharCodes(data)); // "Hello"

Implementation

factory ByteStream.fromUint8ListStream(Stream<Uint8List> stream) {
  return ByteStream._(stream);
}