Combines this curve with another curve.
Example:
final combined = Curves.easeIn.combine(Curves.easeOut);
Curve combine(Curve other) { return _CombinedCurve(this, other); }