THE BEST NEWSLETTER ANYWHERE
Join 6,000 subscribers and get a daily digest of full stack tutorials delivered to your inbox directly.No spam ever. Unsubscribe any time.
Sometimes, We want to find the installed version of Dart and SDK version.
This tutorial shows check the install version of flutter and the SDK version
Type dart --version
command in terminal gives dart SDK version
PS A:\work\dart> dart --version
Dart SDK version: 2.16.1 (stable) (Tue Feb 8 12:02:33 2022 +0100) on "windows_x64"
if you want to find the location of the dart SDK location you can type the where dart
command in Linux.
Following are the commands that run in the terminal.
flutter --version
: List the version number of a flutter
where flutter
: It lists the SDK location installed in the file system.
flutter doctor -v
: list the detailed information about a flutter installation.
🧮 Tags
Recent posts
Multiple ways to iterate a loop with index and element in array in swift How to reload a page/component in Angular? How to populate enum object data in a dropdown in angular| Angular material dropdown example How to get the current date and time in local and UTC in Rust example Angular 13 UpperCase pipe tutorial | How to Convert a String to Uppercase exampleRelated posts