copyWith method

ShopifySharpRefundDuty copyWith({
  1. int? dutyId,
  2. ShopifySharpPriceSet? amountSet,
})

Implementation

ShopifySharpRefundDuty copyWith({
  int? dutyId,
  ShopifySharpPriceSet? amountSet,
}) {
  return ShopifySharpRefundDuty(
    dutyId: dutyId ?? this.dutyId,
    amountSet: amountSet ?? this.amountSet,
  );
}