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. double? height,
})

Implementation

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