Read the bytes from start to end.
start
end
@override Future<Uint8List> readBytes(int start, int end) async { await _file.setPosition(start); return _file.read(end - start); }