BottomBarDetails constructor

BottomBarDetails({
  1. required List<BottomBarItem?> items,
  2. required List<Item> circleItems,
  3. List<Color>? circleColors,
  4. IconThemeData? activeIconTheme,
  5. IconThemeData? iconTheme,
  6. TextStyle? activeTitleStyle,
  7. 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);