GiantToadAlertDialog constructor

const GiantToadAlertDialog({
  1. Widget? title,
  2. Widget? content,
  3. List<Widget>? actions,
  4. bool showCloseButton = true,
  5. VoidCallback? onClose,
  6. Key? key,
})

Implementation

const GiantToadAlertDialog({
  this.title,
  this.content,
  this.actions,
  this.showCloseButton = true,
  this.onClose,
  super.key,
});