How to solve the Flutter and Dart plugin not installed warnings in flutter doctor

I’m setting up my laptop for getting ready to the fluter environment. But when I run flutter doctor from the terminal. I’m getting the following error.

[!] Android Studio (version 3.3)
    ✗ Flutter plugin not installed; this adds Flutter specific functionality.
    ✗ Dart plugin not installed; this adds Dart specific functionality.

After the research, I figured out it’s better to install the Dart plugin with the Flutter plugin, rather than to install it individually.

I’ve follow the following steps:

1. Start Android Studio
2. Preferences > Plugins
3. Select Browse repositories…, search Flutter plug-in and click install
4. Click Yes when prompted to install the Dart plugin.
5. Restart Android Studio

After the restart, you should be good to go.