CountryPickerDialog constructor

const CountryPickerDialog({
  1. Key? key,
  2. required List<Country> countryList,
  3. required ValueChanged<Country> onCountryChanged,
  4. required List<Country> filteredCountries,
  5. InputDecoration? searchFieldInputDecoration,
  6. required String dialogTitle,
  7. required Locale locale,
  8. required TextStyle? searchTextStyle,
})

Implementation

const CountryPickerDialog({
  super.key,
  required this.countryList,
  required this.onCountryChanged,
  required this.filteredCountries,
  this.searchFieldInputDecoration,
  required this.dialogTitle,
  required this.locale,
  required this.searchTextStyle,
});