Orderbook constructor

Orderbook(
  1. String figi,
  2. int depth,
  3. List<OrderResponse> bids,
  4. List<OrderResponse> asks,
  5. TradeStatus tradeStatus,
  6. double minPriceIncrement,
  7. double? faceValue,
  8. double? lastPrice,
  9. double? closePrice,
  10. double? limitUp,
  11. double? limitDown,
)

Implementation

Orderbook(
    this.figi,
    this.depth,
    this.bids,
    this.asks,
    this.tradeStatus,
    this.minPriceIncrement,
    this.faceValue,
    this.lastPrice,
    this.closePrice,
    this.limitUp,
    this.limitDown);