success method

void success(
  1. String text, {
  2. bool newline = true,
})

Outputs a String to the console with ConsoleStyle.success.

Implementation

void success(String text, {bool newline = true}) =>
    write(text, newline: newline, style: ConsoleStyle.success);