copyWith method
Implementation
CollectibleItemInfo copyWith({
int? purchaseDate,
String? currency,
int? amount,
String? cryptocurrency,
int? cryptocurrencyAmount,
String? url,
}) => CollectibleItemInfo(
purchaseDate: purchaseDate ?? this.purchaseDate,
currency: currency ?? this.currency,
amount: amount ?? this.amount,
cryptocurrency: cryptocurrency ?? this.cryptocurrency,
cryptocurrencyAmount: cryptocurrencyAmount ?? this.cryptocurrencyAmount,
url: url ?? this.url,
);