success static method

void success(
  1. BuildContext context,
  2. String message
)

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,
  );
}