CountryInfo constructor

CountryInfo({
  1. required String countryCode,
  2. required String name,
  3. required String englishName,
  4. required String flagEmoji,
  5. required bool isHidden,
  6. required List<String> callingCodes,
})

Implementation

CountryInfo({
  required this.countryCode,
  required this.name,
  required this.englishName,
  required this.flagEmoji,
  required this.isHidden,
  required this.callingCodes,
});