easeIn static method

double easeIn(
  1. double t
)

Implementation

static double easeIn(double t) => math.pow(t, 3).toDouble();