just use "auth_user.dart" and it will work. Those imports use simple terminal paths. So if you have any project file within different folders you can use "../second_directory/auth_user.dart"
Importing it with the full path and package name should work.
Otherwise, check if the name in the pubspec.yaml file matches what you are using in your path (‘package:notes_pro/services/auth/auth_user.dart’) when doing imports.
2
Answers
just use "auth_user.dart" and it will work. Those imports use simple terminal paths. So if you have any project file within different folders you can use "../second_directory/auth_user.dart"
".." will move up one directory
Importing it with the full path and package name should work.
Otherwise, check if the name in the pubspec.yaml file matches what you are using in your path (‘package:notes_pro/services/auth/auth_user.dart’) when doing imports.