HMMultiSelect constructor

const HMMultiSelect({
  1. bool disabled = false,
  2. bool hidden = false,
  3. HMRadius? radius,
  4. bool? selectIconAtLeft,
  5. required List selectedValueList,
  6. Widget? selectIcon,
  7. BoxDecoration? selectPanelDecoration,
  8. TextStyle? selectedValueTextStyle,
  9. Color? selectedBgColor,
  10. bool isModalView = true,
  11. required List selectListItem,
  12. HMSelectSize? size,
  13. Color? selectIconColor,
  14. required Widget selectionPageTitle,
  15. required void onChanged(
    1. List value
    ),
  16. Key? key,
})

Implementation

const HMMultiSelect(
    {this.disabled = false,
    this.hidden = false,
    this.radius,
    this.selectIconAtLeft,
    required this.selectedValueList,
    this.selectIcon,
    this.selectPanelDecoration,
    this.selectedValueTextStyle,
    this.selectedBgColor,
    this.isModalView = true,
    required this.selectListItem,
    this.size,
    this.selectIconColor,
    required this.selectionPageTitle,
    required this.onChanged,
    super.key});