easeInCubic static method

double easeInCubic(
  1. double t
)

Cubic easing in.

Implementation

static double easeInCubic(double t) => t * t * t;