DmppDto constructor

DmppDto({
  1. String? id,
  2. int? from,
  3. int? to,
  4. DmppDtoDeliveryEnvironmentEnum? deliveryEnvironment,
  5. String? code,
  6. DmppDtoCodeTypeEnum? codeType,
  7. String? price,
  8. bool? cheap,
  9. bool? cheapest,
  10. bool? reimbursable,
  11. List<ReimbursementDto> reimbursements = const [],
  12. String? productId,
})

Returns a new DmppDto instance.

Implementation

DmppDto({
  this.id,
  this.from,
  this.to,
  this.deliveryEnvironment,
  this.code,
  this.codeType,
  this.price,
  this.cheap,
  this.cheapest,
  this.reimbursable,
  this.reimbursements = const [],
  this.productId,
});