CoinsCurrentMarketData constructor

CoinsCurrentMarketData({
  1. Map<String, double>? currentPrice,
  2. dynamic totalValueLocked,
  3. dynamic mcapToTvlRatio,
  4. dynamic fdvToTvlRatio,
  5. dynamic roi,
  6. Map<String, double>? ath,
  7. Map<String, double>? athChangePercentage,
  8. Map<String, DateTime>? athDate,
  9. Map<String, double>? atl,
  10. Map<String, double>? atlChangePercentage,
  11. Map<String, DateTime>? atlDate,
  12. Map<String, double>? marketCap,
  13. dynamic marketCapRank,
  14. CoinsCurrentMarketFullyDilutedValuation? fullyDilutedValuation,
  15. Map<String, double>? totalVolume,
  16. Map<String, double>? high24H,
  17. Map<String, double>? low24H,
  18. double? priceChange24H,
  19. double? priceChangePercentage24H,
  20. double? priceChangePercentage7D,
  21. double? priceChangePercentage14D,
  22. double? priceChangePercentage30D,
  23. double? priceChangePercentage60D,
  24. double? priceChangePercentage200D,
  25. double? priceChangePercentage1Y,
  26. double? marketCapChange24H,
  27. double? marketCapChangePercentage24H,
  28. Map<String, double>? priceChange24HInCurrency,
  29. Map<String, double>? priceChangePercentage1HInCurrency,
  30. Map<String, double>? priceChangePercentage24HInCurrency,
  31. Map<String, double>? priceChangePercentage7DInCurrency,
  32. Map<String, double>? priceChangePercentage14DInCurrency,
  33. Map<String, double>? priceChangePercentage30DInCurrency,
  34. Map<String, double>? priceChangePercentage60DInCurrency,
  35. Map<String, double>? priceChangePercentage200DInCurrency,
  36. Map<String, double>? priceChangePercentage1YInCurrency,
  37. Map<String, double>? marketCapChange24HInCurrency,
  38. Map<String, double>? marketCapChangePercentage24HInCurrency,
  39. double? totalSupply,
  40. dynamic maxSupply,
  41. double? circulatingSupply,
  42. DateTime? lastUpdated,
})

Implementation

CoinsCurrentMarketData({
  this.currentPrice,
  this.totalValueLocked,
  this.mcapToTvlRatio,
  this.fdvToTvlRatio,
  this.roi,
  this.ath,
  this.athChangePercentage,
  this.athDate,
  this.atl,
  this.atlChangePercentage,
  this.atlDate,
  this.marketCap,
  this.marketCapRank,
  this.fullyDilutedValuation,
  this.totalVolume,
  this.high24H,
  this.low24H,
  this.priceChange24H,
  this.priceChangePercentage24H,
  this.priceChangePercentage7D,
  this.priceChangePercentage14D,
  this.priceChangePercentage30D,
  this.priceChangePercentage60D,
  this.priceChangePercentage200D,
  this.priceChangePercentage1Y,
  this.marketCapChange24H,
  this.marketCapChangePercentage24H,
  this.priceChange24HInCurrency,
  this.priceChangePercentage1HInCurrency,
  this.priceChangePercentage24HInCurrency,
  this.priceChangePercentage7DInCurrency,
  this.priceChangePercentage14DInCurrency,
  this.priceChangePercentage30DInCurrency,
  this.priceChangePercentage60DInCurrency,
  this.priceChangePercentage200DInCurrency,
  this.priceChangePercentage1YInCurrency,
  this.marketCapChange24HInCurrency,
  this.marketCapChangePercentage24HInCurrency,
  this.totalSupply,
  this.maxSupply,
  this.circulatingSupply,
  this.lastUpdated,
});