TapWidget constructor

const TapWidget({
  1. Key? key,
  2. Widget? child,
  3. Function? onTap,
  4. TapType type = TapType.throttle,
  5. int? timeout,
})

Implementation

const TapWidget({
  Key? key,
  this.child,
  this.onTap,
  this.type = TapType.throttle,
  this.timeout,
}) : super(key: key);