FlexibleHeaderDelegate constructor

FlexibleHeaderDelegate({
  1. double collapsedHeight = kToolbarHeight,
  2. double expandedHeight = kToolbarHeight * 3,
  3. List<Widget>? children,
  4. List<Widget>? actions,
  5. Widget? title,
  6. Color? backgroundColor,
  7. Widget? background,
  8. double collapsedElevation = 8,
  9. double expandedElevation = 0,
  10. Widget? leading,
  11. FlexibleBuilder? builder,
  12. double statusBarHeight = 0,
})

Implementation

FlexibleHeaderDelegate({
  this.collapsedHeight = kToolbarHeight,
  this.expandedHeight = kToolbarHeight * 3,
  this.children,
  this.actions,
  this.title,
  this.backgroundColor,
  this.background,
  this.collapsedElevation = 8,
  this.expandedElevation = 0,
  this.leading,
  this.builder,
  this.statusBarHeight = 0,
});