EncryptedValorisation constructor
EncryptedValorisation({})
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;