Heartbeat constructor

Heartbeat({
  1. String? type,
  2. int? sequence,
  3. int? lastTradeId,
  4. String? productId,
  5. DateTime? time,
})

Implementation

Heartbeat({
  this.type,
  this.sequence,
  this.lastTradeId,
  this.productId,
  this.time,
});