BasicTap constructor

const BasicTap({
  1. Key? key,
  2. dynamic onTap()?,
  3. dynamic onLongPress()?,
  4. Widget? child,
})

Implementation

const BasicTap({
  Key? key,
  this.onTap,
  this.onLongPress,
  this.child,
}) : super(key: key);