DecryptedPatientHealthCareParty constructor

DecryptedPatientHealthCareParty({
  1. PatientHealthCarePartyType? type,
  2. String? healthcarePartyId,
  3. Map<TelecomType, String>? sendFormats,
  4. List<ReferralPeriod>? referralPeriods,
  5. bool? referral,
  6. Base64String? encryptedSelf,
})

Implementation

DecryptedPatientHealthCareParty({
		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;