toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json['\$type'] = this.runtimeType.toString().let((type) {
final regExp = new RegExp(r'([A-Za-z0-9]*)(<.>)?');
return regExp.firstMatch(type)!.group(1);
});
if (desc != null) {
json[r'desc'] = desc;
}
if (healthcarePartyId != null) {
json[r'healthcarePartyId'] = healthcarePartyId;
}
if (gender != null) {
json[r'gender'] = gender;
}
if (education != null) {
json[r'education'] = education;
}
if (profession != null) {
json[r'profession'] = profession;
}
return json;
}