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