BottomBarDetails constructor
BottomBarDetails({
- required List<
BottomBarItem?> items, - required List<
Item> circleItems, - List<
Color> ? circleColors, - IconThemeData? activeIconTheme,
- IconThemeData? iconTheme,
- TextStyle? activeTitleStyle,
- TextStyle? titleStyle,
Implementation
BottomBarDetails(
{required this.items,
required this.circleItems,
this.circleColors,
this.activeIconTheme,
this.iconTheme,
this.activeTitleStyle,
this.titleStyle})
: assert(items.length == 2 || items.length == 4);