errorBold static method

String errorBold(
  1. String text
)

Bold red for error headers

Implementation

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