CustomAppBar constructor

const CustomAppBar({
  1. Key? key,
  2. required String title,
  3. Color titleColor = black,
  4. bool useAppIcon = false,
  5. Function? onBack,
})

Implementation

const CustomAppBar({
  super.key,
  required this.title,
  this.titleColor = black,
  this.useAppIcon = false,
  this.onBack,
});