ErrorDialog constructor
const
ErrorDialog({
- Key? key,
- required String title,
- required String message,
- VoidCallback? onRetry,
- VoidCallback? onDismiss,
Implementation
const ErrorDialog({
super.key,
required this.title,
required this.message,
this.onRetry,
this.onDismiss,
});