NeomageDropdown<T> constructor

const NeomageDropdown<T>({
  1. Key? key,
  2. T? value,
  3. required List<NeomageDropdownItem<T>> items,
  4. ValueChanged<T?>? onChanged,
  5. String? hint,
  6. bool dense = false,
})

Implementation

const NeomageDropdown({
  super.key,
  this.value,
  required this.items,
  this.onChanged,
  this.hint,
  this.dense = false,
});