copyWith method

ShopifySharpPrice copyWith({
  1. String? currencyCode,
  2. double? amount,
})

Implementation

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