warning static method

void warning(
  1. BuildContext context,
  2. String title,
  3. String message
)

Implementation

static void warning(BuildContext context, String title, String message) {
  show(context, title: title, text: message, icon: Icons.warning_amber_rounded, color: context.theme.warning);
}