showAlert function
- BuildContext context,
- String message
Implementation
void showAlert(BuildContext context, String message) {
if (context.mounted) {
alert(context, message);
}
}
void showAlert(BuildContext context, String message) {
if (context.mounted) {
alert(context, message);
}
}