We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Freezed Lint reports to create an private empty constructor when a static class method or variable is added.
To Reproduce
@freezed class Example with _$Example { static const int a = 0; // <- causes lint rule to trigger static String b = 0.toString(); // <- causes lint rule to trigger static int c() => 0; // <- causes lint rule to trigger const factory Example({ required String e, }) = _Example; }
Expected behavior Lint rule should not apply.
The text was updated successfully, but these errors were encountered:
29c1766
Merge pull request #1111 from SunlightBro/master
93b40d1
fix #1110
rrousselGit
No branches or pull requests
Describe the bug
Freezed Lint reports to create an private empty constructor when a static class method or variable is added.
To Reproduce
Expected behavior
Lint rule should not apply.
The text was updated successfully, but these errors were encountered: