getCurvedValue static method

double getCurvedValue(
  1. dynamic animation
)

Implementation

static double getCurvedValue(animation) {
  return Curves.easeInOutCirc.transform(animation.value) - 1.0;
}