easeOutBack static method

double easeOutBack(
  1. double t
)

Back easing out.

Implementation

static double easeOutBack(double t) {
  const c1 = 1.70158;
  const c3 = c1 + 1.0;
  return 1.0 + c3 * math.pow(t - 1.0, 3) + c1 * math.pow(t - 1.0, 2);
}