printInfo static method

void printInfo(
  1. String message
)

Print info message with blue color

Implementation

static void printInfo(String message) {
  printColored('ℹ $message', color: 'blue');
}