FadeInAnimatedAppBar constructor

const FadeInAnimatedAppBar({
  1. Key? key,
  2. double? minHeight,
  3. double? maxHeight,
  4. Widget? title,
  5. Color? backgroundColor,
  6. double animationDuration = 300,
})

The duration of the fade-in animation. Constructor for the FadeInAnimatedAppBar widget.

Implementation

/// Constructor for the FadeInAnimatedAppBar widget.
const FadeInAnimatedAppBar({
  Key? key,
  this.minHeight,
  this.maxHeight,
  this.title,
  this.backgroundColor,
  this.animationDuration = 300,

  /// Default animation duration is 300 milliseconds.
}) : super(key: key);