DropdownItem constructor

const DropdownItem({
  1. required String label,
  2. String? href,
  3. void onTap()?,
  4. Component? icon,
  5. String? description,
  6. bool disabled = false,
  7. bool divider = false,
})

Implementation

const DropdownItem({
  required this.label,
  this.href,
  this.onTap,
  this.icon,
  this.description,
  this.disabled = false,
  this.divider = false,
});