CustomDropDown<T> constructor

const CustomDropDown<T>(
  1. {Key? key,
  2. required T? selectedValue,
  3. required dynamic onChangeCallback(
    1. T? value
    ),
  4. required List<T> items,
  5. required String label,
  6. bool isMandatory = false}
)

Implementation

const CustomDropDown({
  super.key,
  required this.selectedValue,
  required this.onChangeCallback,
  required this.items,
  required this.label,
  this.isMandatory = false,
});