BWMenuAppBar constructor

const BWMenuAppBar({
  1. Key? key,
  2. required String title,
  3. double height = 100,
  4. bool isSafeArea = false,
  5. List<Widget>? actions,
  6. VoidCallback? onMenuTap,
})

Implementation

const BWMenuAppBar({
  super.key,
  required this.title,
  this.height = 100,
  this.isSafeArea = false,
  this.actions,
  this.onMenuTap,
});