DecryptedInsurability constructor

DecryptedInsurability({
  1. Map<String, String>? parameters,
  2. bool? hospitalisation,
  3. bool? ambulatory,
  4. bool? dental,
  5. String? identificationNumber,
  6. String? insuranceId,
  7. int? startDate,
  8. int? endDate,
  9. String? titularyId,
  10. Base64String? encryptedSelf,
})

Implementation

DecryptedInsurability({
		Map<String, String>? parameters,
		bool? hospitalisation,
		bool? ambulatory,
		bool? dental,
		String? identificationNumber,
		String? insuranceId,
		int? startDate,
		int? endDate,
		String? titularyId,
		Base64String? encryptedSelf
	}) : parameters = parameters ?? {},
	hospitalisation = hospitalisation ?? null,
	ambulatory = ambulatory ?? null,
	dental = dental ?? null,
	identificationNumber = identificationNumber ?? null,
	insuranceId = insuranceId ?? null,
	startDate = startDate ?? null,
	endDate = endDate ?? null,
	titularyId = titularyId ?? null,
	encryptedSelf = encryptedSelf ?? null;