todo static method

void todo(
  1. String text
)

"todo" not set Logs to console in cyan, use for plan text or todo texts, LOG_LEVEL: 0

Implementation

static void todo(String text) {
  _writeLog(text: text, label: "TODO", color: LogColor.cyan);
}