BottomBarItem constructor

BottomBarItem({
  1. Widget? icon,
  2. Widget? activeIcon,
  3. String? text,
  4. String? tag,
  5. dynamic extra,
  6. SizedBox? normalIconSize,
  7. SizedBox? selectedIconSize,
  8. bool selectedHiddenText = false,
  9. bool normalHiddenText = false,
  10. bool isConvex = false,
  11. Widget? convex,
  12. int tabIndex = 0,
})

Implementation

BottomBarItem({
  this.icon,
  this.activeIcon,
  this.text,
  this.tag,
  this.extra,
  this.normalIconSize,
  this.selectedIconSize,
  this.selectedHiddenText = false,
  this.normalHiddenText = false,
  this.isConvex = false,
  this.convex,
  this.tabIndex = 0,
});