QudsRadianButton constructor

const QudsRadianButton({
  1. Key? key,
  2. void onPressed()?,
  3. FocusNode? focusNode,
  4. bool autofocus = false,
  5. MouseCursor? mouseCursor,
  6. double? radius,
  7. String? tooltip,
  8. Widget? child,
})

Create an instance of QudsRadianButton.

Implementation

const QudsRadianButton(
    {Key? key,
    this.onPressed,
    this.focusNode,
    this.autofocus = false,
    this.mouseCursor,
    this.radius,
    this.tooltip,
    this.child})
    : super(key: key);