CountryWithPhoneCode constructor

CountryWithPhoneCode({
  1. required String phoneCode,
  2. required String countryCode,
  3. required String exampleNumberMobileNational,
  4. required String exampleNumberFixedLineNational,
  5. required String phoneMaskMobileNational,
  6. required String phoneMaskFixedLineNational,
  7. required String exampleNumberMobileInternational,
  8. required String exampleNumberFixedLineInternational,
  9. required String phoneMaskMobileInternational,
  10. required String phoneMaskFixedLineInternational,
  11. required String? countryName,
})

Implementation

CountryWithPhoneCode({
  required this.phoneCode,
  required this.countryCode,
  required this.exampleNumberMobileNational,
  required this.exampleNumberFixedLineNational,
  required this.phoneMaskMobileNational,
  required this.phoneMaskFixedLineNational,
  required this.exampleNumberMobileInternational,
  required this.exampleNumberFixedLineInternational,
  required this.phoneMaskMobileInternational,
  required this.phoneMaskFixedLineInternational,
  required this.countryName,
});