Order constructor

Order({
  1. String? id,
  2. double? price,
  3. double? size,
  4. String? productId,
  5. String? profileId,
  6. SideEnum? side,
  7. OrderEnum? type,
  8. String? timeInForce,
  9. bool? postOnly,
  10. DateTime? createdAt,
  11. double? fillFees,
  12. double? filledSize,
  13. double? executedValue,
  14. StatusEnum? status,
  15. bool? settled,
})

Implementation

Order({
  this.id,
  this.price,
  this.size,
  this.productId,
  this.profileId,
  this.side,
  this.type,
  this.timeInForce,
  this.postOnly,
  this.createdAt,
  this.fillFees,
  this.filledSize,
  this.executedValue,
  this.status,
  this.settled,
});