AppBarAnimationSlideDown constructor

const AppBarAnimationSlideDown({
  1. Key? key,
  2. required Widget child,
  3. int milliseconds = 400,
  4. bool withFade = true,
  5. double percents = 0.75,
  6. Curve switchInCurve = Curves.easeInSine,
  7. Curve switchOutCurve = Curves.easeOutSine,
})

Implementation

const AppBarAnimationSlideDown({
  Key? key,
  required this.child,
  this.milliseconds = 400,
  this.withFade = true,
  this.percents = 0.75,
  this.switchInCurve = Curves.easeInSine,
  this.switchOutCurve = Curves.easeOutSine,
}) : super(key: key);