ConsoleOutput extension
- on
Methods
-
error(
String text, {bool newline = true}) → void -
Available on Console, provided by the ConsoleOutput extension
Outputs a String to the console with ConsoleStyle.error. -
info(
String text, {bool newline = true}) → void -
Available on Console, provided by the ConsoleOutput extension
Outputs a String to the console with ConsoleStyle.info. -
newline(
) → void -
Available on Console, provided by the ConsoleOutput extension
Outputs a newline to the console. -
plain(
String text, {bool newline = true}) → void -
Available on Console, provided by the ConsoleOutput extension
Outputs a String to the console with ConsoleStyle.plain. -
success(
String text, {bool newline = true}) → void -
Available on Console, provided by the ConsoleOutput extension
Outputs a String to the console with ConsoleStyle.success. -
warning(
String text, {bool newline = true}) → void -
Available on Console, provided by the ConsoleOutput extension
Outputs a String to the console with ConsoleStyle.warning. -
write(
String text, {bool newline = true, ConsoleStyle style = ConsoleStyle.plain}) → void -
Available on Console, provided by the ConsoleOutput extension