Retrieves the content of the file at path as bytes.
path
@override Future<List<int>> get(String path) async { final file = File(p.join(root, path)); return await file.readAsBytes(); }