// Stub file for web platform - not used class FileCacheUtils { static Future getFile(String url) async { throw UnsupportedError('File operations are not supported on web platform'); } static Future clearCache(String url) async { throw UnsupportedError('File operations are not supported on web platform'); } static Future clearAllCache() async { throw UnsupportedError('File operations are not supported on web platform'); } }