printLightYellow function

void printLightYellow(
  1. Object? message
)

Prints the message in light yellow using AnsiStyle.

Implementation

void printLightYellow(Object? message) {
  final formatted = AnsiStyle.fgLightYellow.formatted(message);
  print(formatted);
}