BottomNavDeclaration constructor

BottomNavDeclaration({
  1. required Iterable<BottomNavItem> items,
  2. BottomNavStyle style = BottomNavStyle.flutter,
  3. ColorToken? backgroundColor,
  4. ColorToken? selectedColor,
  5. ColorToken? unselectedColor,
})

Implementation

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