StatePickerContent constructor
const
StatePickerContent({
- Key? key,
- required List<
StateModel> states, - required dynamic onStateSelected(),
- required bool isSearchEnable,
- required FocusNode searchFocus,
- double? height,
- double? width,
- required ValueNotifier<
List< filteredStates,StateModel> > - required ValueNotifier<
StateModel?> selectedState, - VoidCallback? close,
Implementation
const StatePickerContent({
super.key,
required this.states,
required this.onStateSelected,
required this.isSearchEnable,
required this.searchFocus,
this.height,
this.width,
required this.filteredStates,
required this.selectedState,
this.close,
});