copyWith method
Implementation
ShopifySharpPrice copyWith({String? currencyCode, double? amount}) {
return ShopifySharpPrice(
currencyCode: currencyCode ?? this.currencyCode,
amount: amount ?? this.amount,
);
}
ShopifySharpPrice copyWith({String? currencyCode, double? amount}) {
return ShopifySharpPrice(
currencyCode: currencyCode ?? this.currencyCode,
amount: amount ?? this.amount,
);
}