Replies: 1 comment 4 replies
-
There is no support for super constructors. Consider using implements/with instead of extends |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Context
We have a base class for models:
And we have an ORM model for most of subtype models:
Consider we have a model like:
How do we manage to make
Item
freezed?Describe the solution you'd like
Support to freeze model like above.
Describe alternatives you've considered
I know that getters are only supported with the
_
constructor, but with that constructor, we still can't use fields in supertypes.Beta Was this translation helpful? Give feedback.
All reactions