WidgetInkWellTransparent constructor

const WidgetInkWellTransparent({
  1. Key? key,
  2. VoidCallback? onTap,
  3. required Widget child,
  4. BorderRadius? borderRadius,
  5. double? radius,
  6. Color? hoverColor,
  7. dynamic onTapDown,
  8. bool enableInkWell = true,
})

Implementation

const WidgetInkWellTransparent({
  super.key,
  this.onTap,
  required this.child,
  this.borderRadius,
  this.radius,
  this.hoverColor,
  this.onTapDown,
  this.enableInkWell = true,
});