CustomBasicSelectFormField<T extends SelectOption> constructor
const
CustomBasicSelectFormField<T extends SelectOption> ({
- Key? key,
- required List<
T> options, - TextEditingCController? controller,
- String? label,
- bool required = false,
- bool showSearchInput = true,
- bool autoUnfocus = true,
- void onChange(
- SelectOptionOnChangeEventData<
T> event
- SelectOptionOnChangeEventData<
Implementation
const CustomBasicSelectFormField({
super.key,
required this.options,
this.controller,
this.label,
this.required = false,
this.showSearchInput = true,
this.autoUnfocus = true,
this.onChange,
});