easeOutSine static method

double easeOutSine(
  1. double t
)

Sine easing out.

Implementation

static double easeOutSine(double t) => math.sin((t * math.pi) / 2.0);