ScaleTap constructor

ScaleTap({
  1. Key? key,
  2. Key? gestureEventKey,
  3. bool enableFeedback = true,
  4. dynamic onPressed()?,
  5. dynamic onLongPress()?,
  6. required Widget? child,
  7. Duration? duration,
  8. double? scaleMinValue,
  9. double? opacityMinValue,
  10. Curve? scaleCurve,
  11. Curve? opacityCurve,
})

Implementation

ScaleTap({
  Key? key,
  this.gestureEventKey,
  this.enableFeedback = true,
  this.onPressed,
  this.onLongPress,
  required this.child,
  this.duration,
  this.scaleMinValue,
  this.opacityMinValue,
  this.scaleCurve,
  this.opacityCurve,
}) : super(key: key);