DropDownMenu constructor

const DropDownMenu({
  1. Key? key,
  2. required List<Widget> children,
  3. double height = 200,
  4. int milliseconds = 100,
  5. required DropDownMenuController menuController,
})

Implementation

const DropDownMenu(
    {Key? key,
    required this.children,
    this.height = 200,
    this.milliseconds = 100,
    required this.menuController})
    : super(key: key);