CurrencyModel constructor

CurrencyModel({
  1. String? currencyName,
  2. String? currencyCode,
  3. int? subUnit,
  4. String? symbol,
  5. dynamic decimalSeparator,
  6. dynamic decimalPlaces,
  7. String? thousandSeparator,
  8. double? exchange,
  9. int? available,
})

Implementation

CurrencyModel(
    {this.currencyName,
    this.currencyCode,
    this.subUnit,
    this.symbol,
    this.decimalSeparator,
    this.decimalPlaces,
    this.thousandSeparator,
    this.exchange,
    this.available});