Currency constructor

const Currency({
  1. bool historicalCode = false,
  2. bool unofficialCode = false,
  3. bool fundsCode = false,
  4. bool complementaryCurrency = false,
  5. bool noCountry = false,
})

Implementation

const Currency({
  this.historicalCode = false,
  this.unofficialCode = false,
  this.fundsCode = false,
  this.complementaryCurrency = false,
  this.noCountry = false,
});