Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prefix import is lost in generated files #675

Open
woprandi opened this issue May 28, 2024 · 0 comments
Open

Prefix import is lost in generated files #675

woprandi opened this issue May 28, 2024 · 0 comments

Comments

@woprandi
Copy link
Contributor

Describe the bug
When we import classes with prefix, the prefix is lost in the generated file which causes errors

To Reproduce

import 'models.dart' as prefix;

@RestApi()
abstract class MyApi {
  factory MyApi(Dio dio, {String baseUrl}) = _MyClient;

  @GET('/config')
  Future<prefix.Config> getConfig();
}

Generated code :

  @override
  Future<Config> getConfig() async {

Expected behavior
Generated code should use prefix if used in the input code

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant