Trade constructor

Trade(
  1. String? tradeId,
  2. String? productId,
  3. double? price,
  4. double? size,
  5. DateTime? time,
  6. String? side,
  7. double? bid,
  8. double? ask,
)

Trade constructor

Implementation

Trade(this.tradeId, this.productId, this.price, this.size, this.time,
    this.side, this.bid, this.ask);