easeOutQuart static method

double easeOutQuart(
  1. double t
)

Quartic easing out.

Implementation

static double easeOutQuart(double t) => 1.0 - math.pow(1.0 - t, 4);