info static method

void info(
  1. String message
)

Prints an info message in blue with an info symbol.

Implementation

static void info(String message) {
  print('$_blue ℹ$_reset $message');
}