ZetaScreenHeaderBar constructor

const ZetaScreenHeaderBar({
  1. Key? key,
  2. bool? rounded,
  3. Widget? title,
  4. String? actionButtonLabel,
  5. VoidCallback? onActionButtonPressed,
  6. String? backSemanticLabel,
  7. VoidCallback? onBackButtonPressed,
})

Constructor for ZetaScreenHeaderBar.

Implementation

const ZetaScreenHeaderBar({
  super.key,
  super.rounded,
  this.title,
  this.actionButtonLabel,
  this.onActionButtonPressed,
  this.backSemanticLabel,
  this.onBackButtonPressed,
});