Tap constructor

const Tap({
  1. Key? key,
  2. GestureTapCallback? onTap,
  3. Widget? child,
  4. Color? splashColor,
  5. Color? overlayColor,
  6. Color? hoverColor,
})

Implementation

const Tap({
  super.key,
  this.onTap,
  this.child,
  this.splashColor,
  this.overlayColor,
  this.hoverColor,
});