ArcaneDropdownMenu constructor

const ArcaneDropdownMenu({
  1. String? id,
  2. required Widget trigger,
  3. required List<ArcaneMenuItem> items,
  4. DropdownAlignment alignment = DropdownAlignment.left,
  5. double? width,
  6. bool keepOpenOnAction = false,
  7. bool initiallyOpen = false,
  8. Key? key,
})

Implementation

const ArcaneDropdownMenu({
  this.id,
  required this.trigger,
  required this.items,
  this.alignment = DropdownAlignment.left,
  this.width,
  this.keepOpenOnAction = false,
  this.initiallyOpen = false,
  super.key,
});