skip to Main Content

the command
flutter doctor-v
doesn’t work in the cmd
and this is appear
Could not find a command named "doctor-v".

Did you mean one of these?
doctor

Run ‘flutter -h’ (or ‘flutter -h’) for available flutter
commands and options.

I want to know the SDK version

2

Answers


  1. Try this way:

    flutter doctor -h
    

    For verbose logs:

    flutter doctor -v
    
    Login or Signup to reply.
  2. flutter --version
    

    This command will show you the current SDK version.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search