success static method
Logs a success message in green.
Implementation
static String success(String message, {bool error = true}) {
String output = '{@green}[INFO] $message{@end}';
out(output, error: error);
// Return for testing.
return output;
}