ScaleTap constructor

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

Implementation

ScaleTap({
  this.enableFeedback = true,
  this.onPressed,
  this.onLongPress,
  required this.child,
  this.duration,
  this.scaleMinValue,
  this.opacityMinValue,
  this.scaleCurve,
  this.opacityCurve,
});