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