red static method

String red(
  1. String text
)

Foreground: bright red.

Good for error or failure messages.

Implementation

static String red(String text) => AnsiColor.RED(text);