copyWith method
ShopifySharpDiscountAllocation
copyWith({
- String? amount,
- int? discountApplicationIndex,
- ShopifySharpPriceSet? amountSet,
Implementation
ShopifySharpDiscountAllocation copyWith({
String? amount,
int? discountApplicationIndex,
ShopifySharpPriceSet? amountSet,
}) {
return ShopifySharpDiscountAllocation(
amount: amount ?? this.amount,
discountApplicationIndex:
discountApplicationIndex ?? this.discountApplicationIndex,
amountSet: amountSet ?? this.amountSet,
);
}