Reproduction steps:
Example project: https://github.com/JFixby/DartImportsExample
class A located in the lib/folderA/class_a_file.dart
content:
class A {
static String fieldF = "";
}
class C located in the lib/class_c_depends_on_a.dart depends on the A
content:
class C {
C() {
// editing this line
}
}
What was done
print A. in the constructor of the class C
What is expected
to see a list of suggested imports with proposal to import lib/folderA/class_a_file.dart
What is actually happening
no relevant suggestions

Setup
IDEA version: community 2017.2
Dart plugin: 172.3317.48
Reproduction steps:
Example project: https://github.com/JFixby/DartImportsExample
class A located in the
lib/folderA/class_a_file.dartcontent:
class C located in the
lib/class_c_depends_on_a.dartdepends on the Acontent:
What was done
print
A.in the constructor of the classCWhat is expected
to see a list of suggested imports with proposal to import
lib/folderA/class_a_file.dartWhat is actually happening
no relevant suggestions
Setup
IDEA version: community 2017.2
Dart plugin: 172.3317.48