Ticker constructor

Ticker({
  1. String base,
  2. String target,
  3. Market market,
  4. double last,
  5. double volume,
  6. Map<String, double> convertedLast,
  7. Map<String, double> convertedVolume,
  8. String trustScore,
  9. double bidAskSpreadPercentage,
  10. DateTime timestamp,
  11. DateTime lastTradedAt,
  12. DateTime lastFetchAt,
  13. bool isAnomaly,
  14. bool isStale,
  15. String tradeUrl,
  16. String coinId,
  17. String targetCoinId,
})

Implementation

Ticker({
  this.base,
  this.target,
  this.market,
  this.last,
  this.volume,
  this.convertedLast,
  this.convertedVolume,
  this.trustScore,
  this.bidAskSpreadPercentage,
  this.timestamp,
  this.lastTradedAt,
  this.lastFetchAt,
  this.isAnomaly,
  this.isStale,
  this.tradeUrl,
  this.coinId,
  this.targetCoinId,
});