CustomAppBar constructor

const CustomAppBar({
  1. Key? key,
  2. bool? automaticallyImplyLeading,
  3. required String title,
  4. Widget? leading,
  5. List<Widget>? actions,
  6. PreferredSizeWidget? bottom,
})

Implementation

const CustomAppBar(
    {super.key,
    this.automaticallyImplyLeading,
    required this.title,
    this.leading,
    this.actions,
    this.bottom});