SearchFieldSelect constructor
const
SearchFieldSelect({
- Key? key,
- required List<
DropItem> items, - bool readOnly = false,
- String? hint,
- String? labelText,
- bool? isMultiple = false,
- ValueChanged<
DropItem> ? onChanged, - ValueChanged<
List< ? onChangedMulti,DropItem> > - Widget? suffixIcon,
- List<
Object?> ? values, - FormFieldValidator<
String> ? validator, - Object? value,
Implementation
const SearchFieldSelect(
{Key? key,
required this.items,
this.readOnly = false,
this.hint,
this.labelText,
this.isMultiple=false,
this.onChanged,
this.onChangedMulti,
this.suffixIcon,
this.values,
this.validator,
this.value})
: super(key: key);