QudsPopupButton constructor

const QudsPopupButton({
  1. Key? key,
  2. required List<QudsPopupMenuBase> items,
  3. FocusNode? focusNode,
  4. bool autofocus = false,
  5. MouseCursor? mouseCursor,
  6. Color? backgroundColor,
  7. double? radius,
  8. String? tooltip,
  9. 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);