printYellow function

void printYellow(
  1. Object? message
)

Prints the message in yellow using AnsiStyle.

Implementation

void printYellow(Object? message) {
  final formatted = AnsiStyle.fgYellow.formatted(message);
  print(formatted);
}