Country constructor
Implementation
const Country({
  required this.name,
  required this.flag,
  required this.code,
  required this.dialCode,
  required this.nameTranslations,
  required this.minLength,
  required this.maxLength,
  this.regionCode = '',
});