BaseAppBar constructor

BaseAppBar({
  1. bool automaticallyImplyLeading = true,
  2. Widget? title,
  3. Widget? leading,
  4. VoidCallback? leadingOnPressed,
  5. List<Widget>? actions,
  6. double? elevation,
  7. Color? tintColor,
  8. Color? backgroundColor,
  9. SystemUiOverlayStyle? systemOverlayStyle,
  10. bool forceMaterialTransparency = false,
  11. double? height,
  12. bool? centerTitle,
})

Implementation

BaseAppBar({
  this.automaticallyImplyLeading = true,
  this.title,
  this.leading,
  this.leadingOnPressed,
  this.actions,
  this.elevation,
  this.tintColor,
  this.backgroundColor,
  this.systemOverlayStyle,
  this.forceMaterialTransparency = false,
  this.height,
  this.centerTitle,
});