AppDropDownWithMultiSelection constructor

const AppDropDownWithMultiSelection({
  1. Key? key,
  2. double? width,
  3. required Rxn<List<DropDownResponse>> selectedValues,
  4. required String hintText,
  5. required VoidCallback onShowDialogBox,
  6. required VoidCallback onClearPressed,
  7. dynamic onItemsChanged(
    1. List<DropDownResponse>
    )?,
  8. bool isValidator = false,
  9. String? validator(
    1. String?
    )?,
  10. RxList<DropDownResponse>? listItems,
})

Implementation

const AppDropDownWithMultiSelection({
  super.key,
  this.width,
  required this.selectedValues,
  required this.hintText,
  required this.onShowDialogBox,
  required this.onClearPressed,
  this.onItemsChanged,
  this.isValidator = false,
  this.validator,
  this.listItems,
});