ReturnPricingInfo constructor

ReturnPricingInfo({
  1. bool? chargeReturnShippingFee,
  2. MonetaryAmount? maxReturnShippingFee,
  3. MonetaryAmount? refundableItemsTotalAmount,
  4. MonetaryAmount? refundableShippingAmount,
  5. MonetaryAmount? totalRefundedAmount,
})

Implementation

ReturnPricingInfo({
  this.chargeReturnShippingFee,
  this.maxReturnShippingFee,
  this.refundableItemsTotalAmount,
  this.refundableShippingAmount,
  this.totalRefundedAmount,
});