easeOut static method

double easeOut(
  1. double t
)

Implementation

static double easeOut(double t) => 1 - math.pow(1 - t, 3).toDouble();