CustomDropDown<T> constructor

const CustomDropDown<T>({
  1. IconData? icon,
  2. String label = '',
  3. List<CustomDropItem<T>>? items,
  4. void onChange(
    1. T? newValue
    )?,
  5. T? value,
  6. Key? key,
})

Implementation

const CustomDropDown({
  this.icon,
  this.label = '',
  this.items,
  this.onChange,
  this.value,
  Key? key,
}) : super(key: key);