CustomAppBarTitle constructor

const CustomAppBarTitle({
  1. Key? key,
  2. Widget? leadingWidget,
  3. String? title,
  4. double? fontsize,
  5. Color? fontcolor,
  6. TextAlign? align,
  7. Color? appBarBgcolor,
  8. List<Widget>? actionsWidget,
  9. PreferredSizeWidget? bottomWidget,
  10. Widget? titleWidget,
  11. bool? showBackIcon,
  12. Color? backIconColor,
  13. Color? shadowColor,
  14. double? elevation,
})

Implementation

const CustomAppBarTitle({
  super.key,
  this.leadingWidget,
  this.title,
  this.fontsize,
  this.fontcolor,
  this.align,
  this.appBarBgcolor,
  this.actionsWidget,
  this.bottomWidget,
  this.titleWidget,
  this.showBackIcon,
  this.backIconColor,
  this.shadowColor,
  this.elevation,
});