Currency constructor

Currency(
  1. String currencyCode,
  2. int defaultFractionDigits,
  3. int numericCode,
  4. String displayName,
)

Implementation

Currency(
  this.currencyCode,
  this.defaultFractionDigits,
  this.numericCode,
  this.displayName,
);