ClueCircleButton constructor

const ClueCircleButton({
  1. Key? key,
  2. required Widget child,
  3. required VoidCallback? onPressed,
})

Creates a ClueCircleButton.

child is the widget to be displayed inside the button. onPressed is the callback function to be called when the button is pressed.

Implementation

const ClueCircleButton({
  super.key,
  required this.child,
  required this.onPressed,
});