info static method

String info(
  1. String text
)

Cyan text for info

Implementation

static String info(String text) {
  return _applyStyle(text, (t) => chalk.cyan(t));
}