StaticDataMultiSelectDropDown constructor

const StaticDataMultiSelectDropDown({
  1. Key? key,
  2. List<CustomDropDownModel> selectedValue = const [],
  3. required List<CustomDropDownModel> listOfValues,
  4. dynamic selectedCallBack(
    1. List<CustomDropDownModel>
    )?,
})

Implementation

const StaticDataMultiSelectDropDown(
    {super.key,
    this.selectedValue = const [],
    required this.listOfValues,
    this.selectedCallBack});