DialogConfig constructor
DialogConfig({
- required String title,
- String? description,
- BloomNode? body,
- String? confirmLabel,
- String? cancelLabel,
- bool destructive = false,
- VoidCallback? onConfirm,
- VoidCallback? onCancel,
Implementation
DialogConfig({
required this.title,
this.description,
this.body,
this.confirmLabel,
this.cancelLabel,
this.destructive = false,
this.onConfirm,
this.onCancel,
});