BartMaterialBottomBar constructor

const BartMaterialBottomBar({
  1. Key? key,
  2. required List<BartMenuRoute> routes,
  3. required BottomBarTapAction onTap,
  4. required ValueNotifier<int> currentIndexNotifier,
  5. required Material2BottomBarTheme theme,
})

Implementation

const BartMaterialBottomBar({
  super.key,
  required this.routes,
  required this.onTap,
  required this.currentIndexNotifier,
  required this.theme,
});