logInfo function

void logInfo(
  1. String message
)

Prints an informational message to stdout.

Implementation

void logInfo(String message) {
  print(message);
}