DropdownMenuItem<T> constructor

DropdownMenuItem<T>({
  1. required T value,
  2. required Widget child,
  3. bool enabled = true,
  4. String? label,
  5. Key? key,
})

Implementation

DropdownMenuItem({
  required this.value,
  required this.child,
  this.enabled = true,
  this.label,
  super.key,
});