log static method

void log(
  1. dynamic message, {
  2. ConsoleColor color = ConsoleColor.green,
})

Implementation

static void log(dynamic message, {ConsoleColor color = ConsoleColor.green}) {
  _initializeIfNeeded();
  _printColored(message, color);
}