show static method

dynamic show(
  1. AlertDialog alertDialog
)

Implementation

static show(AlertDialog alertDialog) async {
  return await showDialog(
    context: useContext,
    builder: (BuildContext context) {
      return alertDialog;
    },
  );
}