-
-
Notifications
You must be signed in to change notification settings - Fork 237
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
support for all @JsonSeriazable() paramaters #49
Comments
Thanks for the great package, We're using this instead of built_value, and we're using it with json_serializable. I have a question though... I need to use this guy: @JsonSerializable(ignoreUnannotated: true) Is there a way to use ignoreUnannotated or any other class-level json annotations while using @freezed? Currently, it seems to be generating an extra FromJson, when i do this: @freezed @JsonSerializable(ignoreUnannotated: true) ...which probably makes sense, but it means I have to put @jsonkey(ignore: true) all over the place rather than using @JsonSerializable. Thanks in advance for any suggestions. |
Ah, and i just saw this: #50 ... are there any plans in the near future? Thanks! |
#50 should be pretty simple to do (as it's done already with parameters). Feel free to make a pull request! |
ex:
suggestion:
The text was updated successfully, but these errors were encountered: