copyWith method
Implementation
PriceRange copyWith({Money? startPrice, Money? endPrice}) {
return PriceRange(
startPrice: startPrice ?? this.startPrice,
endPrice: endPrice ?? this.endPrice,
);
}
PriceRange copyWith({Money? startPrice, Money? endPrice}) {
return PriceRange(
startPrice: startPrice ?? this.startPrice,
endPrice: endPrice ?? this.endPrice,
);
}