CClick constructor

const CClick({
  1. Key? key,
  2. required Widget child,
  3. dynamic onHover(
    1. bool
    )?,
  4. dynamic onTap()?,
  5. dynamic onDoubleTap()?,
  6. dynamic onLongPress()?,
  7. MouseCursor cursor = SystemMouseCursors.click,
})

Creates a CClick widget.

The child parameter must not be null.

Implementation

const CClick({
  super.key,
  required this.child,
  this.onHover,
  this.onTap,
  this.onDoubleTap,
  this.onLongPress,
  this.cursor = SystemMouseCursors.click,
});