printError function
void
printError(})
Prints object as an error
Implementation
void printError(
Object? object, {
Shade? bg,
Shade? fg,
bool? bold,
bool? dark,
bool? italic,
bool? underline,
bool? blink,
bool? reverse,
bool? concealed,
}) {
printRich(
object,
bg: bg,
fg: fg ?? Shade.RED,
bold: bold,
dark: dark,
italic: italic,
underline: underline,
blink: blink,
reverse: reverse,
concealed: concealed,
);
}