BaseSliverAppBar constructor

BaseSliverAppBar({
  1. Widget? title,
  2. Widget? leading,
  3. VoidCallback? leadingOnPressed,
  4. List<Widget>? actions,
  5. double? elevation = 0,
  6. Color? tintColor,
  7. Color? backgroundColor,
  8. bool? centerTitle,
  9. bool floating = false,
  10. bool pinned = false,
  11. double? expandedHeight,
  12. Widget? flexibleSpace,
  13. SystemUiOverlayStyle? systemOverlayStyle,
})

Implementation

BaseSliverAppBar({
  this.title,
  this.leading,
  this.leadingOnPressed,
  this.actions,
  this.elevation = 0,
  this.tintColor,
  this.backgroundColor,
  this.centerTitle,
  this.floating = false,
  this.pinned = false,
  this.expandedHeight,
  this.flexibleSpace,
  this.systemOverlayStyle,
});