ViewClickEffect.bounce constructor
const
ViewClickEffect.bounce({})
Implementation
const ViewClickEffect.bounce({
AnimationBehavior behavior = AnimationBehavior.normal,
Curve curve = Curves.linear,
Curve? reverseCurve,
Duration duration = const Duration(milliseconds: 200),
Duration? reverseDuration,
double value = 1.0,
double upperBound = 1.0,
double lowerBound = 0.95,
}) : this._(
effect: ViewClickEffects.bounce,
behavior: behavior,
curve: curve,
reverseCurve: reverseCurve,
duration: duration,
reverseDuration: reverseDuration,
value: value,
upperBound: upperBound,
lowerBound: lowerBound,
);