inCubic static method

double inCubic(
  1. double x
)

Implementation

static double inCubic(double x) => x * x * x;