yellow static method

String yellow(
  1. String text
)

Foreground: bright yellow.

Commonly used for warning messages.

Implementation

static String yellow(String text) => AnsiColor.YELLOW(text);