QUSelect constructor

QUSelect({
  1. Key? key,
  2. required List<QUFormSelectOptionModel> options,
  3. required QUFormSelectOptionModel? value,
  4. bool disabled = false,
  5. String placeholder = '请选择',
  6. bool allowClear = false,
  7. bool showSearch = false,
  8. required dynamic onChanged(
    1. QUFormSelectOptionModel?
    ),
})

Implementation

QUSelect(
    {Key? key,
    required this.options,
    required this.value,
    this.disabled = false,
    this.placeholder = '请选择',
    this.allowClear = false,
    this.showSearch = false,
    required this.onChanged})
    : super(key: key);