green function
Wraps the passed text with the ANSI escape sequence for the color red. Use this to control the color of text when printing to the console.
print(green('a dark message'));
The text
to wrap.
By default the color is bold
however you can turn off bold
by setting the bold
argment to false:
print(green('a dark message', bold: false));
background
is the background color to use when printing the
text. Defaults to White.
Implementation
String green(
String text, {
AnsiColor background = AnsiColor.none,
bool bold = true,
}) =>
AnsiColor._apply(
AnsiColor(AnsiColor.codeGreen, bold: bold),
text,
background: background,
);