Check if file exists for URL.
static Future<bool> exists(String url) async { final path = await getFilePath(url); return File(path).existsSync(); }