CustomDropDown<T> constructor

const CustomDropDown<T>({
  1. Key? key,
  2. T? value,
  3. List<T?>? itemList,
  4. required ValueChanged<T> onChanged,
})

Implementation

const CustomDropDown(
    {Key? key, this.value, this.itemList, required this.onChanged})
    : super(key: key);