BottomNavItem constructor

BottomNavItem({
  1. IconData? icon,
  2. String? label,
  3. Widget? widget,
})

Implementation

BottomNavItem({
  this.icon,
  this.label,
  this.widget,
}) : assert(
        icon != null || widget != null,
        'Either an icon or a widget must be provided for BottomNavItem',
      );