VmpGroupDto constructor

VmpGroupDto({
  1. required String id,
  2. String? rev,
  3. int? deletionDate,
  4. int? from,
  5. int? to,
  6. String? productId,
  7. String? code,
  8. SamTextDto? name,
  9. NoGenericPrescriptionReasonDto? noGenericPrescriptionReason,
  10. NoSwitchReasonDto? noSwitchReason,
})

Returns a new VmpGroupDto instance.

Implementation

VmpGroupDto({
  required this.id,
  this.rev,
  this.deletionDate,
  this.from,
  this.to,
  this.productId,
  this.code,
  this.name,
  this.noGenericPrescriptionReason,
  this.noSwitchReason,
});