toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  json[r'type'] = type;
  if (healthcarePartyId != null) {
    json[r'healthcarePartyId'] = healthcarePartyId;
  }
  return json;
}