BaseAppBar constructor

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

Implementation

BaseAppBar({
  this.automaticallyImplyLeading = true,
  this.title,
  this.titleSpacing,
  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,
});