UCountry constructor

UCountry({
  1. required String name,
  2. required String code,
  3. required String dialCode,
  4. required String flag,
  5. required String capital,
  6. required String continent,
  7. required String primaryReligion,
  8. required String currency,
  9. required String primaryLanguage,
})

Implementation

UCountry({
  required this.name,
  required this.code,
  required this.dialCode,
  required this.flag,
  required this.capital,
  required this.continent,
  required this.primaryReligion,
  required this.currency,
  required this.primaryLanguage,
});