copyWith method

ShopifySharpPriceSet copyWith({
  1. ShopifySharpPrice? shopMoney,
  2. ShopifySharpPrice? presentmentMoney,
})

Implementation

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