PopupDialog constructor

const PopupDialog(
  1. double defaultPopUpWidth, {
  2. Key? key,
  3. required BuildContext btnContext,
  4. required ValueChanged<String> onClickMenu,
  5. required List<PopUpMenuItem> items,
  6. required TDBottomTabBarPopUpShapeConfig? config,
})

Implementation

const PopupDialog(this.defaultPopUpWidth,
    {Key? key,
    required this.btnContext,
    required this.onClickMenu,
    required this.items,
    required this.config})
    : super(key: key);