CoinsTicker constructor

CoinsTicker({
  1. String? base,
  2. String? target,
  3. CoinsTickerMarket? 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

CoinsTicker({
  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,
});