CustomMultiSelectDropdown<T> constructor

const CustomMultiSelectDropdown<T>({
  1. Key? key,
  2. required List<T> items,
  3. required String itemLabel(
    1. T
    ),
  4. required dynamic onSelectionChanged(
    1. List<T>
    ),
})

Implementation

const CustomMultiSelectDropdown({
  super.key,
  required this.items,
  required this.itemLabel,
  required this.onSelectionChanged,
});