Order constructor

Order(
  1. String? id,
  2. String? clientOid,
  3. String? profileId,
  4. String? productId,
  5. String? side,
  6. double? price,
  7. double? size,
  8. double? funds,
  9. double? specifiedFunds,
  10. String? type,
  11. String? timeInForce,
  12. bool? postOnly,
  13. DateTime? createdAt,
  14. DateTime? expireTime,
  15. DateTime? doneAt,
  16. String? doneReason,
  17. String? rejectReason,
  18. double? fillFees,
  19. double? filledSize,
  20. double? executedValue,
  21. String? status,
  22. bool? settled,
  23. String? stop,
  24. double? stopPrice,
)

Implementation

Order(
    this.id,
    this.clientOid,
    this.profileId,
    this.productId,
    this.side,
    this.price,
    this.size,
    this.funds,
    this.specifiedFunds,
    this.type,
    this.timeInForce,
    this.postOnly,
    this.createdAt,
    this.expireTime,
    this.doneAt,
    this.doneReason,
    this.rejectReason,
    this.fillFees,
    this.filledSize,
    this.executedValue,
    this.status,
    this.settled,
    this.stop,
    this.stopPrice);