OrderReturnServiceCharge constructor

const OrderReturnServiceCharge({
  1. String? id,
  2. String? sourceServiceChargeId,
  3. String? catalogObjectId,
  4. String? name,
  5. String? percentage,
  6. Money? amountMoney,
  7. Money? appliedMoney,
  8. Money? totalMoney,
  9. Money? totalTaxMoney,
  10. OrderServiceChargeCalculationPhase? calculationPhase,
  11. bool? taxable,
  12. List<OrderReturnTax>? returnTaxes,
})

Implementation

const OrderReturnServiceCharge({
  this.id,
  this.sourceServiceChargeId,
  this.catalogObjectId,
  this.name,
  this.percentage,
  this.amountMoney,
  this.appliedMoney,
  this.totalMoney,
  this.totalTaxMoney,
  this.calculationPhase,
  this.taxable,
  this.returnTaxes,
});