Country constructor

Country({
  1. required String phoneCode,
  2. required String countryCode,
  3. required int e164Sc,
  4. required bool geographic,
  5. required int level,
  6. required String name,
  7. String? nameLocalized = '',
  8. required String example,
  9. required String displayName,
  10. required String displayNameNoCountryCode,
  11. required String e164Key,
  12. String? fullExampleWithPlusSign,
})

Implementation

Country({
  required this.phoneCode,
  required this.countryCode,
  required this.e164Sc,
  required this.geographic,
  required this.level,
  required this.name,
  this.nameLocalized = '',
  required this.example,
  required this.displayName,
  required this.displayNameNoCountryCode,
  required this.e164Key,
  this.fullExampleWithPlusSign,
});