showWarningToast static method

void showWarningToast(
  1. BuildContext context,
  2. String text, {
  3. int seconds = 3,
})

Implementation

static void showWarningToast(BuildContext context, String text, {int seconds = 3}) {
  showToast(context, text, warningColor, Icons.warning_rounded, seconds);
}