ease property
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,
);
Ease curve (smoothstep): f(t) = tt(3 - 2*t).
static final Curve ease = _LambdaCurve(
id: 'ease',
transformFunction: (t) => t * t * (3 - 2 * t),
durationSeconds: _defaultDuration,
bounce: 0,
);