QuickStatus constructor

QuickStatus(
  1. String productId,
  2. double sellPrice,
  3. int sellVolume,
  4. int sellMovingWeek,
  5. int sellOrders,
  6. double buyPrice,
  7. int buyVolume,
  8. int buyMovingWeek,
  9. int buyOrders,
)

Implementation

QuickStatus(
    this.productId,
    this.sellPrice,
    this.sellVolume,
    this.sellMovingWeek,
    this.sellOrders,
    this.buyPrice,
    this.buyVolume,
    this.buyMovingWeek,
    this.buyOrders);