Retrieves the bytes saved at the given path on the disk.
@override Future<List<int>> get(String path) async { final file = _file(path); return file.readAsBytes(); }