NaviBarItem constructor

NaviBarItem({
  1. required IconData icon,
  2. required dynamic page,
  3. String? label,
  4. Color? selectedBackgroundColor,
  5. Color? unselectedBackgroundColor,
  6. Color? selectedIconColor,
  7. Color? unselectedIconColor,
  8. IconData? activeIcon,
})

Implementation

NaviBarItem({
  required this.icon,
  required this.page,
  this.label,
  this.selectedBackgroundColor,
  this.unselectedBackgroundColor,
  this.selectedIconColor,
  this.unselectedIconColor,
  this.activeIcon,
});