PlacedMarketOrder constructor

PlacedMarketOrder(
  1. String orderId,
  2. OperationType operation,
  3. OrderStatus status,
  4. String? rejectReason,
  5. String? message,
  6. int requestedLots,
  7. int executedLots,
  8. MoneyAmount? commission,
)

Implementation

PlacedMarketOrder(
    this.orderId,
    this.operation,
    this.status,
    this.rejectReason,
    this.message,
    this.requestedLots,
    this.executedLots,
    this.commission);