Warning: flutter
on your path resolves to /Users/***/developments/flutter/bin/flutter, which is not inside your current Flutter SDK checkout at /users/***/developments/flutter. Consider adding /users/***/developments/flutter/bin to the front of your path.
It happens because of case sensitive. You can check like that
which flutter
If result is like that /users/***/developments/flutter/bin/flutter”
export path like that
export PATH=/Users/***/developments/flutter/bin:$PATH
Top comments (0)