easeInCubic static method

double easeInCubic(
  1. double t
)

Implementation

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