Hi, How to clear cached local images?
If you add flutter_cache_manager to your dependencies in pubspec you can call DefaultCacheManager().emptyCache() to clear all images. For specific files you can call DefaultCacheManager().removeFile(url).
this option not work anymore in ^2.2.0+1.
any other solution.
Most helpful comment
If you add flutter_cache_manager to your dependencies in pubspec you can call
DefaultCacheManager().emptyCache()to clear all images. For specific files you can callDefaultCacheManager().removeFile(url).