SearchFieldSelect constructor

const SearchFieldSelect({
  1. Key? key,
  2. required List<DropItem> items,
  3. bool readOnly = false,
  4. String? hint,
  5. String? labelText,
  6. bool? isMultiple = false,
  7. ValueChanged<DropItem>? onChanged,
  8. ValueChanged<List<DropItem>>? onChangedMulti,
  9. Widget? suffixIcon,
  10. List<Object?>? values,
  11. FormFieldValidator<String>? validator,
  12. 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);