error static method

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

Implementation

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