EasyBottomBar constructor

EasyBottomBar({
  1. required List<Widget>? tabs,
  2. required List<BottomNavigationBarItem>? bottomItems,
  3. int? currentindex,
  4. Color? backgroundColor,
})

Implementation

EasyBottomBar({
  required this.tabs,
  required this.bottomItems,
  this.currentindex,
  this.backgroundColor,
});