CustomAppBar constructor

const CustomAppBar({
  1. Key? key,
  2. required String title,
})

Creates a CustomAppBar with the given title.

Implementation

const CustomAppBar({super.key, required this.title});