FxBottomNavigationBarItem constructor

FxBottomNavigationBarItem({
  1. required Widget? page,
  2. String? title,
  3. TextStyle? activeTitleStyle,
  4. TextStyle? titleStyle,
  5. Color? activeTitleColor,
  6. Color? titleColor,
  7. double? activeTitleSize,
  8. double? titleSize,
  9. IconData? iconData,
  10. IconData? activeIconData,
  11. Widget? icon,
  12. Widget? activeIcon,
  13. Color? iconColor,
  14. Color? activeIconColor,
  15. double? iconSize,
  16. double? activeIconSize,
})

Implementation

FxBottomNavigationBarItem({required this.page,
    this.title,
    this.activeTitleStyle,
    this.titleStyle,
    this.activeTitleColor,
    this.titleColor,
    this.activeTitleSize,
    this.titleSize,
    this.iconData,
    this.activeIconData,
    this.icon,
    this.activeIcon,
    this.iconColor,
    this.activeIconColor,
    this.iconSize,
    this.activeIconSize});