Reads a string from a file.
@override Future<String> readString(String path) async { final file = _file(path); return file.readAsString(); }