VerticallyExpandedContainer constructor

const VerticallyExpandedContainer({
  1. Key? key,
  2. required AnimatedBottomNavkit widget,
  3. required Animation<double> expandAnimation,
  4. required AnimationController iconAnimationController,
  5. required Animation<double> iconScaleAnimation,
  6. required bool applyMenuIconSwitcher,
})

Implementation

const VerticallyExpandedContainer({
  super.key,
  required this.widget,
  required Animation<double> expandAnimation,
  required AnimationController iconAnimationController,
  required Animation<double> iconScaleAnimation,
  required this.applyMenuIconSwitcher,
}) : _expandAnimation = expandAnimation, _iconAnimationController = iconAnimationController, _iconScaleAnimation = iconScaleAnimation;