TogeSystemTrayHeaderWidget constructor

const TogeSystemTrayHeaderWidget({
  1. Key? key,
  2. String? headerText,
  3. String? description,
  4. Widget? customHeaderWidget,
})

Creates a TogeSystemTrayHeaderWidget.

  • headerText: The main header string.
  • description: A subtitle or explanatory text.
  • customHeaderWidget: If provided, this overrides all other header layout.

Implementation

const TogeSystemTrayHeaderWidget({
  super.key,
  this.headerText,
  this.description,
  this.customHeaderWidget,
});