Future<bool> isImageCached(String url, {String? cacheKey}) async { final id = _id(url, cacheKey); final info = await _getFromCache(id); return info != null && info.file.existsSync(); }