CountryDialCode constructor

CountryDialCode({
  1. required String label,
  2. required String phone,
  3. required String code,
  4. required List<int> phoneLength,
})

Implementation

CountryDialCode({
  required this.label,
  required this.phone,
  required this.code,
  required this.phoneLength,
});