Order constructor

Order(
  1. String orderId,
  2. String figi,
  3. OperationType operation,
  4. OrderStatus status,
  5. int requestedLots,
  6. int executedLots,
  7. OrderType type,
  8. double price,
)

Implementation

Order(this.orderId, this.figi, this.operation, this.status,
    this.requestedLots, this.executedLots, this.type, this.price);