TouchScaleStyle constructor

const TouchScaleStyle({
  1. Key? key,
  2. Duration? duration,
  3. Curve? curve,
  4. Duration? reverseDuration,
  5. Curve? reverseCurve,
  6. Duration? previewDuration,
  7. TouchScaleCallPhase? callPhase,
  8. TouchScaleResolver? resolver,
  9. TouchScaleBehavior? behavior,
  10. required Widget child,
})

Implementation

const TouchScaleStyle({
  super.key,
  this.duration,
  this.curve,
  this.reverseDuration,
  this.reverseCurve,
  this.previewDuration,
  this.callPhase,
  this.resolver,
  this.behavior,
  required super.child,
});