warning static method

String warning(
  1. String text
)

Formats text as a warning message with yellow styling

text The warning message to format

Returns the formatted warning string

Implementation

static String warning(String text) {
  return colorize(text, yellow);
}