Auction constructor

Auction({
  1. String? type,
  2. String? productId,
  3. int? sequence,
  4. String? auctionState,
  5. double? bestBidPrice,
  6. double? bestBidSize,
  7. double? bestAskPrice,
  8. double? bestAskSize,
  9. double? openPrice,
  10. double? openSize,
  11. String? canOpen,
  12. DateTime? timestamp,
})

Implementation

Auction({
  this.type,
  this.productId,
  this.sequence,
  this.auctionState,
  this.bestBidPrice,
  this.bestBidSize,
  this.bestAskPrice,
  this.bestAskSize,
  this.openPrice,
  this.openSize,
  this.canOpen,
  this.timestamp,
});