CurrencyAvailable constructor

CurrencyAvailable({
  1. String? symbol,
  2. String? thousandSeparator,
  3. String? decimalSeparator,
  4. num? decimalPlaces,
  5. num? symbolPosition,
  6. String? symbolForBillion,
  7. String? symbolForMillion,
  8. String? symbolForThousands,
  9. num? subUnit,
  10. String? currencyName,
  11. String? currencyCode,
  12. num? exchange,
})

Implementation

CurrencyAvailable({
  this.symbol,
  this.thousandSeparator,
  this.decimalSeparator,
  this.decimalPlaces,
  this.symbolPosition,
  this.symbolForBillion,
  this.symbolForMillion,
  this.symbolForThousands,
  this.subUnit,
  this.currencyName,
  this.currencyCode,
  this.exchange,
});