info static method

void info(
  1. String message
)

Print info message in blue with border

Implementation

static void info(String message) {
  _printBoxed(message, colorCode: 34, label: 'INFO');
}