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
Currently the generated libraries will use package imports to go up the directory structure. This causes issues with DDC so the generated paths need to be modified.
As an example a foo_convert.dart will look like
import 'package:my_package/models.dart
When it should use relative paths
import '../../models.dart';
The text was updated successfully, but these errors were encountered:
Currently the generated libraries will use package imports to go up the directory structure. This causes issues with DDC so the generated paths need to be modified.
As an example a foo_convert.dart will look like
When it should use relative paths
The text was updated successfully, but these errors were encountered: