easeOutCubic static method

double easeOutCubic(
  1. double t
)

Cubic easing out.

Implementation

static double easeOutCubic(double t) => 1.0 - math.pow(1.0 - t, 3);