BottomBarItem constructor

BottomBarItem({
  1. required String text,
  2. required String image,
  3. Color? activeColor,
  4. Color? inactiveColor,
})

Implementation

BottomBarItem({
  required this.text,
  required this.image,
  this.activeColor,
  this.inactiveColor,
});