logInfo static method

void logInfo(
  1. String message
)

Logs a text in bold white

Implementation

static void logInfo(String message) {
  print("\u001b[37;1m$message\u001b[0m");
}