FadedAnimatedSwitcher constructor

const FadedAnimatedSwitcher({
  1. Key? key,
  2. required Duration duration,
  3. Widget? child,
  4. bool sizeAnimation = false,
})

Implementation

const FadedAnimatedSwitcher({
  super.key,
  required this.duration,
  this.child,
  this.sizeAnimation = false,
});