copyWith method
ShopifySharpPriceSet
copyWith({
- ShopifySharpPrice? shopMoney,
- ShopifySharpPrice? presentmentMoney,
Implementation
ShopifySharpPriceSet copyWith({
ShopifySharpPrice? shopMoney,
ShopifySharpPrice? presentmentMoney,
}) {
return ShopifySharpPriceSet(
shopMoney: shopMoney ?? this.shopMoney,
presentmentMoney: presentmentMoney ?? this.presentmentMoney,
);
}