info static method

void info(
  1. BuildContext context,
  2. String message, [
  3. String? title
])

Shows an info toast.

Implementation

static void info(BuildContext context, String message, [String? title]) {
  show(context, message, title: title, icon: Icons.info_outline_rounded, color: context.theme.info);
}