StreamTicker constructor

StreamTicker({
  1. int? tradeId,
  2. int? sequence,
  3. double? price,
  4. DateTime? time,
  5. String? productId,
  6. String? side,
  7. double? lastSize,
  8. double? bestAsk,
  9. double? bestBid,
})

Implementation

StreamTicker({
  this.tradeId,
  this.sequence,
  this.price,
  this.time,
  this.productId,
  this.side,
  this.lastSize,
  this.bestAsk,
  this.bestBid,
});