static Future<bool> exists(String fileName) async { final file = await get(fileName); // ignore: avoid_slow_async_io return file.exists(); }