printYellow function
Prints the message in yellow using AnsiStyle
.
Implementation
void printYellow(Object? message) {
final formatted = AnsiStyle.fgYellow.formatted(message);
print(formatted);
}
Prints the message in yellow using AnsiStyle
.
void printYellow(Object? message) {
final formatted = AnsiStyle.fgYellow.formatted(message);
print(formatted);
}