expand method

void expand({
  1. Duration? duration,
  2. Curve? curve,
})

Public alias for expandFrom without changing origin/target.

Implementation

void expand({Duration? duration, Curve? curve}) {
  expandFrom(duration: duration, curve: curve);
}