YuiDialog constructor

const YuiDialog({
  1. required String title,
  2. required String description,
  3. Widget? preview,
  4. required List<YuiDialogButton> buttons,
  5. Key? key,
})

Implementation

const YuiDialog({
  required this.title,
  required this.description,
  this.preview,
  required this.buttons,
  Key? key,
}) : super(key: key);