Fill constructor

Fill(
  1. int? tradeId,
  2. DateTime? createdAt,
  3. String? productId,
  4. String? orderId,
  5. String? userId,
  6. String? profileId,
  7. String? liquidity,
  8. double? price,
  9. double? size,
  10. double? fee,
  11. String? side,
  12. bool settled,
  13. double? usdVolume,
)

Implementation

Fill(
    this.tradeId,
    this.createdAt,
    this.productId,
    this.orderId,
    this.userId,
    this.profileId,
    this.liquidity,
    this.price,
    this.size,
    this.fee,
    this.side,
    this.settled,
    this.usdVolume);