logInfo static method

void logInfo(
  1. String message, [
  2. bool skipWhileIntegrationTest = true
])

Logs a text in white

Implementation

static void logInfo(String message, [bool skipWhileIntegrationTest = true]) {
  Console.log("\u001b[37;1m$message\u001b[0m");
}