ExchangeRate constructor

ExchangeRate({
  1. double? amount,
  2. CurrencyType? sourceCurrency,
  3. CurrencyType? targetCurrency,
})

Implementation

ExchangeRate({
  this.amount,
  this.sourceCurrency,
  this.targetCurrency,
});