FcNavigationBarItem constructor

const FcNavigationBarItem({
  1. required Widget icon,
  2. String? label,
  3. Widget? activeIcon,
  4. Color? backgroundColor,
})

Implementation

const FcNavigationBarItem({
  required this.icon,
  this.label,
  Widget? activeIcon,
  this.backgroundColor,
}) : activeIcon = activeIcon ?? icon;