info static method

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

Shows an info toast (blue background with info icon).

Implementation

static void info(BuildContext context, String message) {
  show(
    context,
    message,
    backgroundColor: Colors.blue,
    textColor: Colors.white,
    icon: Icons.info,
  );
}