readBytes method Null safety
- int count
override
Read count
bytes from the stream.
Implementation
@override
InputStreamBase readBytes(int count) {
final bytes = subset(offset - start, count);
offset += bytes.length;
return bytes as InputStream;
}