cubic method

CubicInterpolator cubic(
  1. double scale
)

Implementation

CubicInterpolator cubic(double scale) {
  return CubicInterpolator(
    input: this,
    scale: scale,
  );
}