Show activity on this post.
Read moreCan I delete flutter pub-cache?
To clear your system cache with an older SDK, you can manually delete the PUB_CACHE folder .
Read moreHow do I clear my pub-cache?
Delete ~/. pub-cache/hosted and/or ~/. pub-cache/git (for Git dependencies) . This requires running flutter packages to get in all active projects on your machine afterward.
Read moreWhat is pub get?
Get is one of the commands of the pub tool . This command gets all the dependencies listed in the pubspec. yaml file in the current working directory, as well as their transitive dependencies.
Read moreWhy is flutter pub get not working?
Delete all the packages folders in your project (also in subfolders). Delete the pubspec. lock file in your project. Run pub get again from a command line or select Tools in the Dart Editor menu, and then select Pub Get.
Read moreHow do I get http dependency in flutter?
Depend on it
Read moreHow do I install packages on flutter?
Installing Flutter Packages:
Read more