DialogButton constructor
const
DialogButton({
- Key? key,
- required String buttonText,
- required ThemeData theme,
- WidgetStateProperty<
Color?> ? backgroundColor, - Color? textColor,
- required TextDirection langDirection,
- VoidCallback? onPressed,
- required bool? isSelected,
Implementation
const DialogButton({
super.key,
required this.buttonText,
required this.theme,
this.backgroundColor,
this.textColor,
required this.langDirection,
this.onPressed,
required this.isSelected,
});