ValorisationDto constructor

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

Returns a new ValorisationDto instance.

Implementation

ValorisationDto({
  this.startOfValidity,
  this.endOfValidity,
  this.predicate,
  this.totalAmount,
  this.reimbursement,
  this.patientIntervention,
  this.doctorSupplement,
  this.vat,
  this.label = const {},
  this.encryptedSelf,
});