NZDialog constructor

const NZDialog({
  1. Key? key,
  2. String? title,
  3. String? message,
  4. Widget? content,
  5. List<NZDialogAction>? actions,
  6. NZDialogType type = NZDialogType.basic,
  7. IconData? icon,
  8. Color? iconColor,
  9. double? progressValue,
  10. String? imagePath,
  11. bool barrierDismissible = true,
  12. Widget? footer,
})

Implementation

const NZDialog({
  super.key,
  this.title,
  this.message,
  this.content,
  this.actions,
  this.type = NZDialogType.basic,
  this.icon,
  this.iconColor,
  this.progressValue,
  this.imagePath,
  this.barrierDismissible = true,
  this.footer,
});