Fill constructor

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

Implementation

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