copyWithWrapped method
Implementation
ShopifySharpTaxLine copyWithWrapped({
Wrapped<double?>? price,
Wrapped<double?>? rate,
Wrapped<String?>? title,
Wrapped<ShopifySharpPriceSet?>? priceSet,
}) {
return ShopifySharpTaxLine(
price: (price != null ? price.value : this.price),
rate: (rate != null ? rate.value : this.rate),
title: (title != null ? title.value : this.title),
priceSet: (priceSet != null ? priceSet.value : this.priceSet),
);
}