CountryPickerDialog constructor

CountryPickerDialog({
  1. Key? key,
  2. required String searchText,
  3. required List<Country> countryList,
  4. required ValueChanged<Country> onCountryChanged,
  5. required Country selectedCountry,
  6. required List<Country> filteredCountries,
  7. PickerDialogStyle? style,
})

Implementation

CountryPickerDialog({
  Key? key,
  required this.searchText,
  required this.countryList,
  required this.onCountryChanged,
  required this.selectedCountry,
  required this.filteredCountries,
  this.style,
}) : super(key: key);