readBuffer method
Attempts to read count
bytes from the stream into into
. Returns the
number of bytes read (which can be < count
if the end of the stream
has been reached).
Implementation
@override
Future<int> readBuffer(int count, Uint8List into) {
return _file.readInto(into, 0, count);
}