flipped property
Returns a new curve that is the reversed inversion of this one.
This is often useful with CurvedAnimation.reverseCurve.
See also:
- FlippedCurve, the class that is used to implement this getter.
- ReverseAnimation, which reverses an Animation rather than a Curve.
- CurvedAnimation, which can take a separate curve and reverse curve.
Implementation
Curve get flipped => FlippedCurve(this);