AnimatedBarItems constructor

AnimatedBarItems({
  1. required Widget? icon,
  2. required Widget? title,
  3. Widget? selectedIcon,
  4. Color? backgroundColor = Colors.black,
  5. Color unSelectedColor = Colors.grey,
  6. Color selectedColor = Colors.green,
})

Implementation

AnimatedBarItems({
  required this.icon,
  required this.title,
  this.selectedIcon,
  this.backgroundColor = Colors.black,
  this.unSelectedColor = Colors.grey,
  this.selectedColor = Colors.green,
});