Depth constructor

Depth({
  1. num? quantity,
  2. num? price,
  3. num? orders,
})

Implementation

Depth({
  num? quantity,
  num? price,
  num? orders,
}) {
  _quantity = quantity;
  _price = price;
  _orders = orders;
}