PreviewConversionEntity constructor

PreviewConversionEntity({
  1. num? convertedAmount,
  2. num? totalAmount,
  3. num? feeInUSD,
  4. num? feeInToCurrency,
  5. num? feeInFromCurrency,
  6. num? conversionFeeInUSD,
  7. num? conversionFeeInToCurrency,
  8. num? conversionFeeInFromCurrency,
  9. num? fromRate,
  10. num? toRate,
  11. num? intermediateUSDAmount,
})

Implementation

PreviewConversionEntity({
  this.convertedAmount,
  this.totalAmount,
  this.feeInUSD,
  this.feeInToCurrency,
  this.feeInFromCurrency,
  this.conversionFeeInUSD,
  this.conversionFeeInToCurrency,
  this.conversionFeeInFromCurrency,
  this.fromRate,
  this.toRate,
  this.intermediateUSDAmount,
});