WidgetButton constructor
- Key? key,
- required Widget child,
- HitTestBehavior? behavior,
- void onPressed()?,
- void onPressedWithDetails()?,
- void onLongPress()?,
Implementation
const WidgetButton({
super.key,
required this.child,
this.behavior,
this.onPressed,
this.onPressedWithDetails,
this.onLongPress,
});