DDialog constructor

const DDialog({
  1. Key? key,
  2. DialogStyle? dialogStyle,
  3. Widget? title,
  4. Widget? content,
  5. List<Widget>? actions,
})

Implementation

const DDialog({
  super.key,
  this.dialogStyle,
  this.title,
  this.content,
  this.actions,
});