success static method

void success(
  1. String text
)

success Logs to console in green, use for log success events, LOG_LEVEL: 0

Implementation

static void success(String text) {
  _writeLog(text: text, label: "SUCCESS", color: LogColor.green);
}