Return the contents of the specified file. Pass the name of the file.
static Future<String> read(String fileName) async { final file = await get(fileName); return readFile(file); }