Ticker constructor

Ticker({
  1. String? type,
  2. int? tradeId,
  3. double? price,
  4. double? size,
  5. double? bid,
  6. double? ask,
  7. double? volume,
  8. DateTime? time,
})

Implementation

Ticker({
  this.type,
  this.tradeId,
  this.price,
  this.size,
  this.bid,
  this.ask,
  this.volume,
  this.time,
});