Order constructor
Order(
- String? id,
- String? clientOid,
- String? profileId,
- String? productId,
- String? side,
- double? price,
- double? size,
- double? funds,
- double? specifiedFunds,
- String? type,
- String? timeInForce,
- bool? postOnly,
- DateTime? createdAt,
- DateTime? expireTime,
- DateTime? doneAt,
- String? doneReason,
- String? rejectReason,
- double? fillFees,
- double? filledSize,
- double? executedValue,
- String? status,
- bool? settled,
- String? stop,
- 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);