AnimationSet constructor

AnimationSet({
  1. int animationDuration = 0,
  2. VoidCallback? onAnimationEnd,
  3. Widget? widgetIndicator,
  4. bool restartAnimation = false,
  5. bool animateFromLastPercent = false,
  6. Curve curve = Curves.linear,
})

Implementation

AnimationSet({
  this.animationDuration = 0,
  this.onAnimationEnd,
  this.widgetIndicator,
  this.restartAnimation = false,
  this.animateFromLastPercent = false,
  this.curve = Curves.linear,
});