printWarning function
Prints text
to the console as a warning message with yellow color.
Implementation
void printWarning(String text) {
print('\x1B[33m$text\x1B[0m');
}
Prints text
to the console as a warning message with yellow color.
void printWarning(String text) {
print('\x1B[33m$text\x1B[0m');
}