EasyInkTap constructor

const EasyInkTap({
  1. Key? key,
  2. void onTap()?,
  3. void onDoubleTap()?,
  4. void onLongPress()?,
  5. Color? backgroundColor,
  6. BorderRadius? borderRadius,
  7. Color? splashColor,
  8. Color? highlightColor,
  9. Color? hoverColor,
  10. EdgeInsets? padding,
  11. double feedbackDuration = 0.5,
  12. required Widget child,
})

Implementation

const EasyInkTap(
    {Key? key,
    this.onTap,
    this.onDoubleTap,
    this.onLongPress,
    this.backgroundColor,
    this.borderRadius,
    this.splashColor,
    this.highlightColor,
    this.hoverColor,
    this.padding,
    this.feedbackDuration = 0.5,
    required this.child})
    : super(key: key);