Clickable constructor

const Clickable({
  1. Key? key,
  2. required Widget child,
  3. void onTap()?,
  4. void onDoubleTap()?,
  5. void onLongPress()?,
  6. void onTapDown(
    1. TapDownDetails
    )?,
  7. void onTapCancel()?,
  8. void onTapUp(
    1. TapUpDetails
    )?,
})

Implementation

const Clickable({
  super.key,
  required this.child,
  this.onTap,
  this.onDoubleTap,
  this.onLongPress,
  this.onTapDown,
  this.onTapCancel,
  this.onTapUp,
});