warning static method

void warning(
  1. String text
)

warning Logs to console in yellow, use when warning accours, example api response is not nominal, LOG_LEVEL: 30

Implementation

static void warning(String text) {
  _writeLog(text: text, label: "WARNING", color: LogColor.yellow);
}