logInYellow function

void logInYellow(
  1. String? text
)

Will print the text in yellow color to the console.

Implementation

void logInYellow(String? text) {
  dev.log(LogColor.yellow.anciCode + '$text' + LogColor.resetColor.anciCode);
}