AnimatedBottomNavigationBar constructor

const AnimatedBottomNavigationBar({
  1. required BottomBarCenterModel bottomBarCenterModel,
  2. required List<BottomBarItem> bottomBar,
  3. Color barColor = Colors.white,
  4. Gradient? barGradient,
  5. FloatingBottomBarController? controller,
  6. Key? key,
})

Implementation

const AnimatedBottomNavigationBar({
  required this.bottomBarCenterModel,
  required this.bottomBar,
  this.barColor = Colors.white,
  this.barGradient,
  this.controller,
  Key? key,
}) : super(key: key);