static Future<bool> existFile(String filename) async { final file = await getFile(filename); return file.existsSync(); }