Currency constructor

Currency({
  1. required String code,
  2. required String name,
  3. required String symbol,
  4. Country? country,
  5. List<Country>? countries,
})

Implementation

Currency({
  required this.code,
  required this.name,
  required this.symbol,
  this.country,
  this.countries,
});