Is there a way to ignore the serialization of a property within a JsonSerializable class?
I'm using build_runner to generate the mapping code.
One way to achieve this is by commenting the mapping for that specific property within the .g.dart-file though it would be great if an ignore attribute could be added on the property.
import 'package:json_annotation/json_annotation.dart';
part 'example.g.dart';
@JsonSerializable()
class Example {
Example({this.a, this.b, this.c,});
int a;
int b;
/// Ignore this property
int c;
factory Example.fromJson(Map<String, dynamic> json) =>
_$ExampleFromJson(json);
Map<String, dynamic> toJson() => _$ExampleToJson(this);
}
Which results in
Example _$ExampleFromJson(Map<String, dynamic> json) {
return Example(a: json['a'] as int, b: json['b'] as int, c: json['c'] as int);
}
Map<String, dynamic> _$ExampleToJson(Example instance) =>
<String, dynamic>{'a': instance.a, 'b': instance.b, 'c': instance.c};
What I do to achieve this is by commenting the mapping of c.
Example _$ExampleFromJson(Map<String, dynamic> json) {
return Example(a: json['a'] as int, b: json['b'] as int, c: json['c'] as int);
}
Map<String, dynamic> _$ExampleToJson(Example instance) =>
<String, dynamic>{'a': instance.a, 'b': instance.b, /* 'c': instance.c */};
Add @JsonKey(ignore: true)
before the field that you don't want to include
@JsonKey(ignore: true)
int c;
See also https://github.com/dart-lang/json_serializable/blob/06718b94d8e213e7b057326e3d3c555c940c1362/json_annotation/lib/src/json_key.dart#L45-L49
A workaround is to set the property to null
and set includeIfNull
flag to false:
toNull(_) => null;
@freezed
class User with _$User {
const factory User({
...
@Default(false)
@JsonKey(toJson: toNull, includeIfNull: false)
bool someReadOnlyProperty,
}) = _User;
factory User.fromJson(Map<String, dynamic> json) => _$UserFromJson(json);
}
And the generated code is:
/// user.g.dart
Map<String, dynamic> _$$_UserToJson(_$_User instance) {
final val = <String, dynamic>{
...
};
void writeNotNull(String key, dynamic value) {
if (value != null) {
val[key] = value;
}
}
writeNotNull('someReadOnlyProperty', toNull(instance.someReadOnlyProperty));
return val;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With