printLightWhite function

void printLightWhite(
  1. Object? message
)

Prints the message in light white using AnsiStyle.

Implementation

void printLightWhite(Object? message) {
  final formatted = AnsiStyle.fgLightWhite.formatted(message);
  print(formatted);
}