CurrencyMeta constructor

CurrencyMeta({
  1. String? symbol,
  2. String? name,
  3. String? symbolNative,
  4. int? decimalDigits,
  5. int? rounding,
  6. String? code,
  7. String? namePlural,
})

Implementation

CurrencyMeta(
    {this.symbol,
    this.name,
    this.symbolNative,
    this.decimalDigits,
    this.rounding,
    this.code,
    this.namePlural});