OmegaConfirmDialogWidget constructor

OmegaConfirmDialogWidget({
  1. required String? description,
  2. required String? title,
  3. required Color? textColor,
  4. required Color? bgColor,
  5. required dynamic yesPressed()?,
  6. required dynamic noPressed()?,
})

Implementation

OmegaConfirmDialogWidget({
  required this.description,
  required this.title,
  required this.textColor,
  required this.bgColor,
  required this.yesPressed,
  required this.noPressed,
});