How to change Android Studio Quick Fixes default suggesstion?

Viewed 15

In Android Studio when there is an error, and you hover over it, the Android studio shows the lint error and suggests Quick fixes.

In flutter development when a class is not imported, the quick fix suggests to import the class. Import suggestion

The default suggestion is to import the class in relative path.

If you click 'More actions' you can see the option to import in absolute path as the second option. The whole list of suggestions

What I want is to make the absolute import option as the default? How can I do that?

I know the error is shown by the dart lint and i suppose the quick action is also suggested by the dart lint. So can I configure the suggestions anyhow?

0 Answers
Related