stream method
Streams bytes in chunks.
This is the primary lazy read path for downstream integrators that want to preserve streaming behavior.
Implementation
@override
Stream<Uint8List> stream({int chunkSize = Block.defaultStreamChunkSize}) {
return _backing.streamRange(_offset, _length, chunkSize: chunkSize);
}