CustomAlertDialog constructor

const CustomAlertDialog({
  1. Key? key,
  2. required String message,
  3. VoidCallback? callback,
})

Implementation

const CustomAlertDialog({
  super.key,
  required this.message,
  this.callback,
});