CustomBasicSelectFormField<T extends SelectOption> constructor

const CustomBasicSelectFormField<T extends SelectOption>({
  1. Key? key,
  2. required List<T> options,
  3. TextEditingCController? controller,
  4. String? label,
  5. bool required = false,
  6. bool showSearchInput = true,
  7. bool autoUnfocus = true,
  8. void onChange(
    1. SelectOptionOnChangeEventData<T> event
    )?,
})

Implementation

const CustomBasicSelectFormField({
  super.key,
  required this.options,
  this.controller,
  this.label,
  this.required = false,
  this.showSearchInput = true,
  this.autoUnfocus = true,
  this.onChange,
});