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