BottomBarItem constructor

BottomBarItem({
  1. IconData? activeIcon,
  2. required IconData icon,
  3. String? title,
  4. required Function onPressed,
})

Implementation

BottomBarItem(
    {this.activeIcon,
    required this.icon,
    this.title,
    required this.onPressed});