AnimatedBottomBar constructor

const AnimatedBottomBar({
  1. Key? key,
  2. required ValueNotifier<bool> showStateNotifier,
  3. required BartBottomBar bottomBar,
})

Implementation

const AnimatedBottomBar({
  super.key,
  required this.showStateNotifier,
  required this.bottomBar,
});