toJson method
Implementation
@override
dynamic toJson() => switch (_exists) {
null => super.toJson(),
true => 'exists',
false => '!exists',
};
@override
dynamic toJson() => switch (_exists) {
null => super.toJson(),
true => 'exists',
false => '!exists',
};