static Future<String> readFileString(String filename) async { final content = await readFileBytes(filename); return String.fromCharCodes(content); }