EncryptedPatientHealthCareParty constructor
EncryptedPatientHealthCareParty({
- PatientHealthCarePartyType? type,
- String? healthcarePartyId,
- Map<
TelecomType, String> ? sendFormats, - List<
ReferralPeriod> ? referralPeriods, - bool? referral,
- Base64String? encryptedSelf,
Implementation
EncryptedPatientHealthCareParty({
PatientHealthCarePartyType? type,
String? healthcarePartyId,
Map<TelecomType, String>? sendFormats,
List<ReferralPeriod>? referralPeriods,
bool? referral,
Base64String? encryptedSelf
}) : type = type ?? null,
healthcarePartyId = healthcarePartyId ?? null,
sendFormats = sendFormats ?? {},
referralPeriods = referralPeriods ?? [],
referral = referral ?? false,
encryptedSelf = encryptedSelf ?? null;