QUSelectDialog constructor

QUSelectDialog({
  1. Key? key,
  2. String title = '',
  3. double? height,
  4. double? width,
  5. bool showSearch = false,
  6. bool multiple = false,
  7. required dynamic onChanged(
    1. List<QUFormSelectOptionModel>
    ),
  8. required List<QUFormSelectOptionModel> options,
  9. required List<QUFormSelectOptionModel> value,
})

Implementation

QUSelectDialog(
    {Key? key,
    this.title = '',
    this.height,
    this.width,
    this.showSearch = false,
    this.multiple = false,
    required this.onChanged,
    required this.options,
    required this.value})
    : super(key: key);