PanelHeaderOptions constructor

const PanelHeaderOptions({
  1. bool primary = true,
  2. bool centerTitle = false,
  3. double elevation = 8.0,
  4. bool forceElevated = false,
  5. bool alwaysOnTop = true,
  6. bool floating = false,
  7. Widget? leading,
  8. List<Widget>? trailing,
  9. MainAxisAlignment iconsAlignment = MainAxisAlignment.center,
})

Implementation

const PanelHeaderOptions({
  this.primary = true,
  this.centerTitle = false,
  this.elevation = 8.0,
  this.forceElevated = false,
  this.alwaysOnTop = true,
  this.floating = false,
  this.leading,
  this.trailing,
  this.iconsAlignment = MainAxisAlignment.center,
});