NormalAlertDialog constructor

const NormalAlertDialog({
  1. Key? key,
  2. String? title,
  3. Widget? titleWidget,
  4. String? message,
  5. Widget? content,
  6. String okText = "OK",
  7. VoidCallback? onOk,
})

Implementation

const NormalAlertDialog({
  super.key,
  this.title,
  this.titleWidget,
  this.message,
  this.content,
  this.okText = "OK",
  this.onOk,
});