showAlertDialog method
Implementation
Future<void> showAlertDialog(String title, String message) {
return showDialog(
context: context,
builder: (context) {
return AlertDialog(
title: Text(title),
content: Text(message),
);
},
);
}