toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (this.deleted != null) {
json[r'deleted'] = this.deleted;
} else {
json[r'deleted'] = null;
}
if (this.policyId != null) {
json[r'policy_id'] = this.policyId;
} else {
json[r'policy_id'] = null;
}
return json;
}