Data constructor

Data({
  1. String? id,
  2. String? email,
  3. String? address,
  4. String? reference,
  5. num? expectedAmountInUSD,
  6. num? expectedAmountInCrypto,
  7. num? feeInCrypto,
  8. num? feeInUSD,
  9. num? expectedAmountWithFeeInCrypto,
  10. String? crypto,
  11. String? baseFiat,
  12. num? baseFiatToUSDRate,
  13. num? usdToCryptoRate,
})

Implementation

Data({
  this.id,
  this.email,
  this.address,
  this.reference,
  this.expectedAmountInUSD,
  this.expectedAmountInCrypto,
  this.feeInCrypto,
  this.feeInUSD,
  this.expectedAmountWithFeeInCrypto,
  this.crypto,
  this.baseFiat,
  this.baseFiatToUSDRate,
  this.usdToCryptoRate,
});