showSuccessAlert static method
Show a success alert
Implementation
static void showSuccessAlert({String? title, String? message}) {
_showDialog(
title: title ?? "Success",
content: message,
icon: Icons.check_circle_outline_rounded,
color: Colors.green,
);
}