BaseAppBar constructor

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

Implementation

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