InkW constructor

const InkW({
  1. Key? key,
  2. Widget? child,
  3. double elevation = 0,
  4. dynamic onTap()?,
  5. dynamic onTapDown(
    1. TapDownDetails? details
    )?,
  6. dynamic onTapUp(
    1. TapUpDetails? details
    )?,
  7. dynamic onLongPress()?,
  8. dynamic onDoubleTap()?,
  9. EdgeInsetsGeometry? padding,
  10. Color? color,
  11. Color? splash,
  12. Color? highlightColor,
  13. BorderRadius? borderRadius,
  14. EdgeInsetsGeometry? margin,
  15. ShapeBorder? shape,
  16. bool enableSplash = true,
  17. bool splashByBaseColor = false,
  18. BoxBorder? border,
  19. double opacity = 1,
})

Implementation

const InkW(
    {Key? key,
    this.child,
    this.elevation = 0,
    this.onTap,
    this.onTapDown,
    this.onTapUp,
    this.onLongPress,
    this.onDoubleTap,
    this.padding,
    this.color,
    this.splash,
    this.highlightColor,
    this.borderRadius,
    this.margin,
    this.shape,
    this.enableSplash = true,
    this.splashByBaseColor = false,
    this.border,
    this.opacity = 1})
    : super(key: key);