PopupWidgetButton constructor

const PopupWidgetButton({
  1. Key? key,
  2. Widget? child,
  3. Icon? icon,
  4. required Widget widget,
  5. String? tooltip,
  6. bool blurBackground = true,
  7. bool isFullWidth = false,
  8. double? width,
  9. Color? color,
  10. dynamic onOpened()?,
})

Implementation

const PopupWidgetButton({
  super.key,
  this.child,
  this.icon,
  required this.widget,
  this.tooltip,
  this.blurBackground = true,
  this.isFullWidth = false,
  this.width,
  this.color,
  this.onOpened,
});