Closed
Description
I'd like to propose a "See import line(s)" on classes/methods from classes or extensions/functions/global variables.
Like:
import 'dart:math';
void main() {
max(1, 2);
}
In the above example, there would be a way to access this in the "max" and it would take you to the import line (here you could alias it or whatever).
And if there was a conflict between multiple imports it could select all with multiple cursors.