IDSMultiSelectDropDown constructor
const
IDSMultiSelectDropDown({
- Key? key,
- required List<
String> options, - required List<
String> selectedValues, - required dynamic onChanged(),
- String? whenEmpty,
- Widget? icon,
- Widget? hint,
- TextStyle? hintStyle,
- Widget childBuilder()?,
- bool isDense = true,
- bool enabled = true,
- InputDecoration? decoration,
- String validator(
- String? selectedOptions
- bool readOnly = false,
- int? limit = 0,
- required dynamic onLimitMessage(),
Implementation
const IDSMultiSelectDropDown({
Key? key,
required this.options,
required this.selectedValues,
required this.onChanged,
this.whenEmpty,
this.icon,
this.hint,
this.hintStyle,
this.childBuilder,
this.menuItembuilder,
this.isDense = true,
this.enabled = true,
this.decoration,
this.validator,
this.readOnly = false,
this.limit = 0,
required this.onLimitMessage,
}) : super(key: key);