decelerate property

EaseFunction decelerate
getter/setter pair

An easing function that starts with a fast acceleration and then decelerates towards the final value with a sine curve.

This is a good choice for animations that should have a quick start with a smooth and natural deceleration, such as animations of UI elements sliding or popping into view.

Implementation

static EaseFunction decelerate = Curves.decelerate.transform;