VerticalSideNavBarComponent constructor

const VerticalSideNavBarComponent({
  1. required List<ControllerTabObject> tabItems,
  2. bool shouldManageNotifications = true,
  3. Color? altColor,
})

Implementation

const VerticalSideNavBarComponent({
  required this.tabItems,
  this.shouldManageNotifications = true,
  this.altColor,
}) : assert(tabItems.length >= 2);