EncryptedValorisation constructor

EncryptedValorisation({
  1. int? startOfValidity,
  2. int? endOfValidity,
  3. String? predicate,
  4. List<int>? reference,
  5. double? totalAmount,
  6. double? reimbursement,
  7. double? patientIntervention,
  8. double? doctorSupplement,
  9. double? vat,
  10. Map<String, String>? label,
  11. Base64String? encryptedSelf,
})

Implementation

EncryptedValorisation({
		int? startOfValidity,
		int? endOfValidity,
		String? predicate,
		List<int>? reference,
		double? totalAmount,
		double? reimbursement,
		double? patientIntervention,
		double? doctorSupplement,
		double? vat,
		Map<String, String>? label,
		Base64String? encryptedSelf
	}) : startOfValidity = startOfValidity ?? null,
	endOfValidity = endOfValidity ?? null,
	predicate = predicate ?? null,
	reference = reference ?? null,
	totalAmount = totalAmount ?? null,
	reimbursement = reimbursement ?? null,
	patientIntervention = patientIntervention ?? null,
	doctorSupplement = doctorSupplement ?? null,
	vat = vat ?? null,
	label = label ?? {},
	encryptedSelf = encryptedSelf ?? null;