Country constructor

Country({
  1. required String country,
  2. required String acronym,
  3. required String idd,
  4. List<String>? ddds,
  5. required String flag,
  6. required String format,
})

Implementation

Country({
  required this.country,
  required this.acronym,
  required this.idd,
  this.ddds,
  required this.flag,
  required this.format,
});