WidgetButton constructor

const WidgetButton({
  1. Key? key,
  2. required Widget child,
  3. HitTestBehavior? behavior,
  4. void onPressed()?,
  5. void onPressedWithDetails(
    1. TapUpDetails
    )?,
  6. void onLongPress()?,
})

Implementation

const WidgetButton({
  super.key,
  required this.child,
  this.behavior,
  this.onPressed,
  this.onPressedWithDetails,
  this.onLongPress,
});