RehaculDialog constructor

const RehaculDialog(
  1. {Key? key,
  2. String? title,
  3. String? message,
  4. required String noButtonText,
  5. required String yesButtonText,
  6. VoidCallback? onNoPressed,
  7. required VoidCallback onYesPressed,
  8. 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);