easeOutCubic static method

double easeOutCubic(
  1. double t
)

Implementation

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