freezed icon indicating copy to clipboard operation
freezed copied to clipboard

Uses deprecated `@JsonKey(ignore: true)` annotation for `copyWith` and `hashCode`

Open lrsvmb opened this issue 11 months ago • 0 comments

When generating serializable classes, freezed uses the deprecated @JsonKey(ignore: true) on copyWith and hashCode. This has been deprecated since json_serializable: ^6.6.0 and I suggest updating to the most recent way : @JsonKey(includeFromJson: false, includeToJson: false)

lrsvmb avatar Mar 04 '24 11:03 lrsvmb