printWarning function
void
printWarning(})
Prints object as a warning
Implementation
void printWarning(
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.YELLOW,
bold: bold,
dark: dark,
italic: italic,
underline: underline,
blink: blink,
reverse: reverse,
concealed: concealed,
);
}