DialogButton constructor

const DialogButton({
  1. Key? key,
  2. required String buttonText,
  3. required ThemeData theme,
  4. WidgetStateProperty<Color?>? backgroundColor,
  5. Color? textColor,
  6. required TextDirection langDirection,
  7. VoidCallback? onPressed,
  8. 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,
});