ZetaDialog constructor

const ZetaDialog({
  1. Key? key,
  2. ZetaDialogHeaderAlignment headerAlignment = ZetaDialogHeaderAlignment.center,
  3. Widget? icon,
  4. String? title,
  5. required String message,
  6. String? primaryButtonLabel,
  7. VoidCallback? onPrimaryButtonPressed,
  8. String? secondaryButtonLabel,
  9. VoidCallback? onSecondaryButtonPressed,
  10. String? tertiaryButtonLabel,
  11. VoidCallback? onTertiaryButtonPressed,
  12. bool? rounded,
})

Creates a Zeta Dialog.

Implementation

const ZetaDialog({
  super.key,
  this.headerAlignment = ZetaDialogHeaderAlignment.center,
  this.icon,
  this.title,
  required this.message,
  this.primaryButtonLabel,
  this.onPrimaryButtonPressed,
  this.secondaryButtonLabel,
  this.onSecondaryButtonPressed,
  this.tertiaryButtonLabel,
  this.onTertiaryButtonPressed,
  super.rounded,
});