SearchableDropdownFormField constructor
SearchableDropdownFormField({
- Key? key,
- required List items,
- String? hintText,
- TextStyle? textStyle,
- required dynamic onChanged(),
- required dynamic onSelected(
- dynamic
- required List<
Widget> childWidget, - required String value,
- String? validator()?,
- double? width,
- Widget? suffixWidget,
- int? contentPadding,
- bool? readOnly,
- InputDecoration? inputDecoration,
Implementation
SearchableDropdownFormField({super.key,
required this.items,
this.hintText,
this.textStyle,
required this.onChanged,
required this.onSelected,
required this.childWidget,
required this.value,
this.validator,
this.width,
this.suffixWidget,
this.contentPadding,
this.readOnly,
this.inputDecoration,
});