bounceIn property

Curve bounceIn
final

BounceIn is defined as the inverse of BounceOut: f(t) = 1 - bounceOut(1 - t).

Implementation

static final Curve bounceIn = _LambdaCurve(
  id: 'bounceIn',
  transformFunction: (t) => 1 - bounceOut.transform(1 - t),
  durationSeconds: _defaultDuration,
  bounce: 0,
);