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