Orderbook constructor

const Orderbook(
  1. String market,
  2. int timestamp,
  3. double total_ask_size,
  4. double total_bid_size,
  5. List<OrderbookUnit> orderbook_units,
)

Implementation

const Orderbook(
    this.market,
    this.timestamp,
    this.total_ask_size,
    this.total_bid_size,
    this.orderbook_units,
    );