QudsPopupButton constructor
const
QudsPopupButton({
- Key? key,
- required List<
QudsPopupMenuBase> items, - FocusNode? focusNode,
- bool autofocus = false,
- MouseCursor? mouseCursor,
- Color? backgroundColor,
- double? radius,
- String? tooltip,
- Widget? child,
Create an instance of QudsRadianButton.
Implementation
const QudsPopupButton(
{Key? key,
required this.items,
this.focusNode,
this.autofocus = false,
this.mouseCursor,
this.backgroundColor,
this.radius,
this.tooltip,
this.child})
: assert(items.length > 0),
super(key: key);