success static method

String success(
  1. String text
)

Green text for success

Implementation

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