AnimatedAppBar constructor

const AnimatedAppBar({
  1. Key? key,
  2. required PreferredSizeWidget? appBar,
  3. required ValueNotifier<bool> showStateNotifier,
})

Implementation

const AnimatedAppBar({
  super.key,
  required this.appBar,
  required this.showStateNotifier,
});