TradeResponse constructor

TradeResponse(
  1. String id,
  2. String pagingToken,
  3. String ledgerCloseTime,
  4. String? offerId,
  5. bool baseIsSeller,
  6. String? baseAccount,
  7. String? baseOfferId,
  8. String baseAmount,
  9. String baseAssetType,
  10. String? baseAssetCode,
  11. String? baseAssetIssuer,
  12. String? counterAccount,
  13. String? counterOfferId,
  14. String counterAmount,
  15. String counterAssetType,
  16. String? counterAssetCode,
  17. String? counterAssetIssuer,
  18. String tradeType,
  19. String? baseLiquidityPoolId,
  20. String? counterLiquidityPoolId,
  21. int? liquidityPoolFeeBp,
  22. Price price,
  23. TradeResponseLinks links,
)

Implementation

TradeResponse(
    this.id,
    this.pagingToken,
    this.ledgerCloseTime,
    this.offerId,
    this.baseIsSeller,
    this.baseAccount,
    this.baseOfferId,
    this.baseAmount,
    this.baseAssetType,
    this.baseAssetCode,
    this.baseAssetIssuer,
    this.counterAccount,
    this.counterOfferId,
    this.counterAmount,
    this.counterAssetType,
    this.counterAssetCode,
    this.counterAssetIssuer,
    this.tradeType,
    this.baseLiquidityPoolId,
    this.counterLiquidityPoolId,
    this.liquidityPoolFeeBp,
    this.price,
    this.links);