easeOutQuint static method

double easeOutQuint(
  1. double t
)

Quintic easing out.

Implementation

static double easeOutQuint(double t) => 1.0 - math.pow(1.0 - t, 5);