success static method
Shows a success toast (green background with check icon).
Implementation
static void success(BuildContext context, String message) {
show(
context,
message,
backgroundColor: Colors.green,
textColor: Colors.white,
icon: Icons.check_circle,
);
}