sharedSecondPhaseCurve function

Curve sharedSecondPhaseCurve({
  1. required bool hasChange,
  2. double overshoot = 2.8,
})

Implementation

Curve sharedSecondPhaseCurve({required final bool hasChange, final double overshoot = 2.8}) =>
    hasChange ? FlippedCurve(BackOutCurve(overshoot: overshoot)) : Curves.easeInCubic;