Clicker constructor

const Clicker({
  1. Key? key,
  2. void onClick()?,
  3. void onTap()?,
  4. bool hasHover = true,
  5. Widget? child,
  6. double innerPadding = 10.0,
  7. double outterPadding = 0.0,
  8. bool isCircular = false,
  9. void onSwipe(
    1. DragUpdateDetails
    )?,
  10. BorderRadius? borderRadius,
})

Implementation

const Clicker({
  super.key,
  this.onClick,
  this.onTap,
  this.hasHover = true,
  this.child,
  this.innerPadding = 10.0,
  this.outterPadding = 0.0,
  this.isCircular = false,
  this.onSwipe,
  this.borderRadius,
});