CustomHomeAppBar constructor

const CustomHomeAppBar({
  1. Key? key,
  2. required String title,
  3. required Color titleColor,
  4. bool? showLeading,
  5. bool? isCenterTitle,
  6. List<Widget>? actions,
})

Implementation

const CustomHomeAppBar({
  super.key,
  required this.title,
  required this.titleColor,
  this.showLeading,
  this.isCenterTitle,
  this.actions,
});