ClueCircleButton constructor
const
ClueCircleButton({
- Key? key,
- required Widget child,
- 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,
});