ComboboxItem<T> constructor

const ComboboxItem<T>({
  1. Key? key,
  2. VoidCallback? onTap,
  3. T? value,
  4. required Widget child,
})

Creates an item for a combobox menu.

The child argument is required.

Implementation

const ComboboxItem({
  Key? key,
  this.onTap,
  this.value,
  required Widget child,
}) : super(key: key, child: child);