DropdownItem<T> constructor

const DropdownItem<T>({
  1. required T value,
  2. required Widget child,
  3. required DropdownItemStyle style,
  4. void onTap()?,
  5. Key? key,
})

Implementation

const DropdownItem(
    {required this.value,
    required this.child,
    required this.style,
    this.onTap,
    super.key});