copyWithWrapped method
Implementation
ShopifySharpPrice copyWithWrapped({
Wrapped<String?>? currencyCode,
Wrapped<double?>? amount,
}) {
return ShopifySharpPrice(
currencyCode: (currencyCode != null
? currencyCode.value
: this.currencyCode),
amount: (amount != null ? amount.value : this.amount),
);
}