combine method

Curve combine(
  1. Curve other
)

Combines this curve with another curve.

Example:

final combined = Curves.easeIn.combine(Curves.easeOut);

Implementation

Curve combine(Curve other) {
  return _CombinedCurve(this, other);
}