Prices constructor

const Prices({
  1. String? usd,
  2. String? usdFoil,
  3. String? usdEtched,
  4. String? eur,
  5. String? eurFoil,
  6. String? tix,
})

Constructs a Prices object by setting its properties.

Implementation

const Prices({
  this.usd,
  this.usdFoil,
  this.usdEtched,
  this.eur,
  this.eurFoil,
  this.tix,
});