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