success static method

String success(
  1. String text
)

Formats text as a success message with green styling

text The success message to format

Returns the formatted success string

Implementation

static String success(String text) {
  return colorize(text, green);
}