easeOutExpo static method

double easeOutExpo(
  1. double t
)

Exponential easing out.

Implementation

static double easeOutExpo(double t) =>
    t == 1.0 ? 1.0 : 1.0 - math.pow(2.0, -10.0 * t);