ProductStats constructor

ProductStats({
  1. String? tradingPair,
  2. Stats? stats30Day,
  3. Stats? stats24Hour,
})

Implementation

ProductStats({
  this.tradingPair,
  this.stats30Day,
  this.stats24Hour,
});