Stats constructor

Stats({
  1. double? oneDayVolume,
  2. double? oneDayChange,
  3. double? oneDaySales,
  4. double? oneDayAveragePrice,
  5. double? sevenDayVolume,
  6. double? sevenDayChange,
  7. double? sevenDaySales,
  8. double? sevenDayAveragePrice,
  9. double? thirtyDayVolume,
  10. double? thirtyDayChange,
  11. double? thirtyDaySales,
  12. double? thirtyDayAveragePrice,
  13. double? totalVolume,
  14. double? totalSales,
  15. double? totalSupply,
  16. double? count,
  17. int? numOwners,
  18. double? averagePrice,
  19. int? numReports,
  20. double? marketCap,
  21. double? floorPrice,
})

Implementation

Stats(
    {this.oneDayVolume,
    this.oneDayChange,
    this.oneDaySales,
    this.oneDayAveragePrice,
    this.sevenDayVolume,
    this.sevenDayChange,
    this.sevenDaySales,
    this.sevenDayAveragePrice,
    this.thirtyDayVolume,
    this.thirtyDayChange,
    this.thirtyDaySales,
    this.thirtyDayAveragePrice,
    this.totalVolume,
    this.totalSales,
    this.totalSupply,
    this.count,
    this.numOwners,
    this.averagePrice,
    this.numReports,
    this.marketCap,
    this.floorPrice});