RehaculDialog constructor
- {Key? key,
- String? title,
- String? message,
- required String noButtonText,
- required String yesButtonText,
- VoidCallback? onNoPressed,
- required VoidCallback onYesPressed,
- required bool isAlert}
Implementation
const RehaculDialog({
Key? key,
this.title,
this.message,
required this.noButtonText,
required this.yesButtonText,
this.onNoPressed,
required this.onYesPressed,
required this.isAlert,
}) : super(key: key);