easeInExpo static method

double easeInExpo(
  1. double t
)

Exponential easing in.

Implementation

static double easeInExpo(double t) =>
    t == 0.0 ? 0.0 : math.pow(2.0, 10.0 * t - 10.0) as double;