MultiSelectDropDown constructor

const MultiSelectDropDown({
  1. Key? key,
  2. required String title,
  3. required List<String> items,
  4. required dynamic onChanged(
    1. String?
    ),
  5. required String? value,
  6. String hint = '',
  7. Color? primaryColor,
  8. IconData? suffixIcon,
  9. String separator = ",,,",
  10. InputDecoration? decoration,
})

Implementation

const MultiSelectDropDown({
  super.key,
  required this.title,
  required this.items,
  required this.onChanged,
  required this.value,
  this.hint = '',
  this.primaryColor,
  this.suffixIcon,
  this.separator = ",,,",
  this.decoration,
});