ArsDialog constructor

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

Implementation

const ArsDialog(
    {Key? key, this.dialogStyle, this.title, this.content, this.actions})
    : super(key: key);