SCBottomBarItem constructor

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

Implementation

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