AlertConfig constructor
const
AlertConfig({
- required AlertType type,
- required String title,
- required String description,
- String? buttonText,
- VoidCallback? onPressed,
- AlertTheme? theme,
Implementation
const AlertConfig({
required this.type,
required this.title,
required this.description,
this.buttonText,
this.onPressed,
this.theme,
});