bold static method

String bold(
  1. String text
)

Bold text

Implementation

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