DialogConfig constructor

DialogConfig({
  1. required String title,
  2. String? description,
  3. BloomNode? body,
  4. String? confirmLabel,
  5. String? cancelLabel,
  6. bool destructive = false,
  7. VoidCallback? onConfirm,
  8. VoidCallback? onCancel,
})

Implementation

DialogConfig({
  required this.title,
  this.description,
  this.body,
  this.confirmLabel,
  this.cancelLabel,
  this.destructive = false,
  this.onConfirm,
  this.onCancel,
});