show static method
Implementation
static void show(BuildContext context, String message, {VoidCallback? callback}) {
showDialog(
context: context,
builder: (BuildContext context) {
return CustomAlertDialog(
message: message,
callback: callback,
);
},
);
}