CountryPickerContent constructor
const
CountryPickerContent({
- Key? key,
- required ValueNotifier<
List< filteredCountries,CountryModel> > - required ValueNotifier<
CountryModel?> selectedCountry, - required dynamic onSelect(),
- required bool isSearchEnable,
- required FocusNode searchFocus,
- required ValueNotifier<
String> searchText, - required dynamic onSearch(),
- double? height,
- double? width,
Implementation
const CountryPickerContent({
super.key,
required this.filteredCountries,
required this.selectedCountry,
required this.onSelect,
required this.isSearchEnable,
required this.searchFocus,
required this.searchText,
required this.onSearch,
this.height,
this.width,
});