XBottomNavigationBarItem constructor

XBottomNavigationBarItem(
  1. String wKey, {
  2. dynamic icon,
  3. dynamic label,
  4. dynamic activeIcon,
  5. dynamic backgroundColor,
  6. dynamic tooltip,
})

Implementation

XBottomNavigationBarItem(
  this.wKey, {
  icon,
  label,
  activeIcon,
  backgroundColor,
  tooltip,
}) : super(
        icon: icon,
        label: label,
        activeIcon: activeIcon,
        backgroundColor: backgroundColor,
        tooltip: tooltip,
      );