Fill constructor

Fill(
  1. String? entryId,
  2. String? tradeId,
  3. String? orderId,
  4. DateTime? tradeTime,
  5. String? tradeType,
  6. double? price,
  7. double? size,
  8. double? commission,
  9. String? productId,
  10. DateTime? sequenceTimestamp,
  11. String? liquidityIndicator,
  12. bool? sizeInQuote,
  13. String? userId,
  14. String? side,
)

Implementation

Fill(
    this.entryId,
    this.tradeId,
    this.orderId,
    this.tradeTime,
    this.tradeType,
    this.price,
    this.size,
    this.commission,
    this.productId,
    this.sequenceTimestamp,
    this.liquidityIndicator,
    this.sizeInQuote,
    this.userId,
    this.side);