DropdownMenu constructor

const DropdownMenu({
  1. required Component trigger,
  2. required List<DropdownItem> items,
  3. DropdownAlignment alignment = DropdownAlignment.left,
  4. double? width,
  5. Key? key,
})

Implementation

const DropdownMenu({
  required this.trigger,
  required this.items,
  this.alignment = DropdownAlignment.left,
  this.width,
  super.key,
});