You can use the git branch command to see the list of available branches. Each version has its own branch, so you can just checkout to a specific version using git checkout {branchName} command . For example, to change the version to 1.22.
Read moreWhat flutter channel should I use?
According to flutter build release channels, a stable version is recommended for all production app releases . if you want to use flutter for production apps then many developers and even google recommend using stable.12 Nis 2021
Read moreHow do I downgrade my SDK flutter?
There are several ways to upgrade or downgrade the Flutter SDK version. It can be done by changing the git branch of the Flutter SDK repository, changing the channel, or downloading a specific version from their website . To upgrade to the latest version, you can use the flutter upgrade command.
Read moreHow do I update my dart sdk path?
To fix this on Android Studio 3.1.
Read moreHow do I update my flutter app to the newest version?
You can surely upgrade your existing app right away with Flutter 2.0.
Read moreHow do I update all flutter packages to latest version?
Go to https://pub.dartlang.org/packages and find the latest package from there. In there you can see an install tab. click that. Now you can add the dependencies into your pubspec.
Read more