copyWith method
ShopifySharpTaxLine
copyWith({
- double? price,
- double? rate,
- String? title,
- ShopifySharpPriceSet? priceSet,
Implementation
ShopifySharpTaxLine copyWith({
double? price,
double? rate,
String? title,
ShopifySharpPriceSet? priceSet,
}) {
return ShopifySharpTaxLine(
price: price ?? this.price,
rate: rate ?? this.rate,
title: title ?? this.title,
priceSet: priceSet ?? this.priceSet,
);
}