CountryPickerDialog constructor
CountryPickerDialog({
- Key? key,
- required String searchText,
- required List<
Country> countryList, - required ValueChanged<
Country> onCountryChanged, - required Country selectedCountry,
- required List<
Country> filteredCountries, - 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);