BottomNavDeclaration constructor
BottomNavDeclaration({
- required Iterable<
BottomNavItem> items, - BottomNavStyle style = BottomNavStyle.flutter,
- ColorToken? backgroundColor,
- ColorToken? selectedColor,
- ColorToken? unselectedColor,
Implementation
BottomNavDeclaration({
required Iterable<BottomNavItem> items,
this.style = BottomNavStyle.flutter,
this.backgroundColor,
this.selectedColor,
this.unselectedColor,
}) : items = List.unmodifiable(items);