Reputation: 145
I have Flutter version 3.3.2 installed. How do I upgrade flutter project dart sdk version?
Current project sdk version sdk:">=2.7.0 3.0.0<"
Upvotes: 0
Views: 4347
Reputation: 41
You can run flutter upgrade
and normally your project should pick up the most recent version of the SDK.
Refer to the documentation and to this previously asked question.
Upvotes: 3