warning static method
Shows a warning toast (orange background with warning icon).
Implementation
static void warning(BuildContext context, String message) {
show(
context,
message,
backgroundColor: Colors.orange,
textColor: Colors.white,
icon: Icons.warning,
);
}