ease property

Curve ease
final

Ease curve (smoothstep): f(t) = tt(3 - 2*t).

Implementation

static final Curve ease = _LambdaCurve(
  id: 'ease',
  transformFunction: (t) => t * t * (3 - 2 * t),
  durationSeconds: _defaultDuration,
  bounce: 0,
);