KinDialog constructor
const
KinDialog({
- Key? key,
- required String title,
- String? message,
- Widget? content,
- String confirmLabel = 'OK',
- String? cancelLabel,
- VoidCallback? onConfirm,
- VoidCallback? onCancel,
- bool isDestructive = false,
Implementation
const KinDialog({
super.key,
required this.title,
this.message,
this.content,
this.confirmLabel = 'OK',
this.cancelLabel,
this.onConfirm,
this.onCancel,
this.isDestructive = false,
});