You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package: imports very often have a lot of redundancy.
package: imports aren't consistent with dart: imports.
It's a minor cosmetic nit, but could we allow a simpler form where the filename is inferred? That is, import 'package:NAME' would be syntactic sugar for import 'package:NAME/NAME.dart'.
The text was updated successfully, but these errors were encountered:
Most of the time, my Dart imports look like:
package:
imports very often have a lot of redundancy.package:
imports aren't consistent withdart:
imports.It's a minor cosmetic nit, but could we allow a simpler form where the filename is inferred? That is,
import 'package:NAME'
would be syntactic sugar forimport 'package:NAME/NAME.dart'
.The text was updated successfully, but these errors were encountered: