infoBold static method

String infoBold(
  1. String text
)

Bold cyan for info headers

Implementation

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