Order constructor

Order(
  1. int orderId,
  2. int clientOrderId,
  3. int price,
  4. int originalQuantity,
  5. int quantity,
  6. bool isBid,
  7. String owner,
  8. String expireTimestamp,
  9. SelfMatchingPreventionStyle selfMatchingPrevention,
)

Implementation

Order(
  this.orderId,
  this.clientOrderId,
  this.price,
  this.originalQuantity,
  this.quantity,
  this.isBid,
  this.owner,
  this.expireTimestamp,
  this.selfMatchingPrevention
);