CupertinoTabBarData constructor

CupertinoTabBarData({
  1. Color? backgroundColor,
  2. List<BottomNavigationBarItem>? items,
  3. Color? activeColor,
  4. Key? widgetKey,
  5. void itemChanged(
    1. int
    )?,
  6. double? iconSize,
  7. int? currentIndex,
  8. double? height,
  9. Color? inactiveColor,
  10. Border? border,
})

Implementation

CupertinoTabBarData({
  super.backgroundColor,
  super.items,
  super.activeColor,
  super.widgetKey,
  super.itemChanged,
  super.iconSize,
  super.currentIndex,
  super.height,
  this.inactiveColor,
  this.border,
});