CollectibleItemInfo constructor

CollectibleItemInfo({
  1. required int purchaseDate,
  2. required String currency,
  3. required int amount,
  4. required String cryptocurrency,
  5. required int cryptocurrencyAmount,
  6. required String url,
})

Implementation

CollectibleItemInfo({
  required this.purchaseDate,
  required this.currency,
  required this.amount,
  required this.cryptocurrency,
  required this.cryptocurrencyAmount,
  required this.url,
});