BuildHeader constructor

const BuildHeader({
  1. Key? key,
  2. bool? showBackButton,
  3. void onClose()?,
  4. String? backButtonTooltip,
  5. String? title,
  6. bool? showCloseButton,
  7. String? closeButtonTooltip,
  8. EdgeInsetsGeometry? padding,
})

Implementation

const BuildHeader({
  super.key,
  this.showBackButton,
  this.onClose,
  this.backButtonTooltip,
  this.title,
  this.showCloseButton,
  this.closeButtonTooltip,
  this.padding,
});