'Failed to start the Dart CLI isolate (null). in mac
When I am doing flutter pub get I am getting this issue, In flutter doctor no issue is coming, can anyone please help me for me the information you can see the image.
Solution 1:[1]
I always get this issue.
What I do is
- Go to flutter directory where you installed the flutter
- Go to /bin/cache
- remove all the items inside the cache directory
run flutter clean in the project root directory
then you are good to go.
Solution 2:[2]
you can try following,
Delete the pub cache folder from C:\Users{your username}\AppData\Roaming\Pub.
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.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Mufaddal Hamid |
| Solution 2 | Ruchit |
