MultiDropDownField<T> constructor
const
MultiDropDownField<T> ({
- List<
T> ? data, - required List<
T> selectedItems, - required String title,
- required String label,
- Color? fillColor,
- Color? borderColor,
- required dynamic onConfirm(
- List<
T> ?
- List<
- required dynamic onItemClick(
- T
- Future<
List< onFind()?,T> > - GlobalKey<
FormFieldState> ? dropkey, - Color? textColor,
- Color? buttonsColor,
- Color? selectedTextColor,
- Color? unSelectedTextColor,
- Color? selectedColor,
- Color? chipColor,
- Color? backgroundColor,
- Color? unselectedColor,
- Color? titleColor,
- Color? itemsTextColor,
Implementation
const MultiDropDownField({
this.data,
required this.selectedItems,
required this.title,
required this.label,
this.fillColor,
this.borderColor,
required this.onConfirm,
required this.onItemClick,
this.onFind,
this.dropkey,
this.textColor,
this.buttonsColor,
this.selectedTextColor,
this.unSelectedTextColor,
this.selectedColor,
this.chipColor,
this.backgroundColor,
this.unselectedColor,
this.titleColor,
this.itemsTextColor,
});