DropdownWidget constructor

const DropdownWidget({
  1. Key? key,
  2. required Rect origRect,
  3. required List<Widget> actions,
  4. CrossAxisAlignment? actionAlignment,
  5. EdgeInsets padding = EdgeInsets.zero,
  6. Set<DropDownLayoutPosition>? position,
  7. double elevation = 3.0,
  8. AnimationConfig? animate,
  9. AnimationConfig? leaveAnimate,
})

Implementation

const DropdownWidget({
  super.key,
  required this.origRect,
  required this.actions,
  this.actionAlignment,
  this.padding = EdgeInsets.zero,
  this.position,
  this.elevation = 3.0,
  this.animate,
  this.leaveAnimate,
});