logInRed function

void logInRed(
  1. String? text
)

Will print the text in red color to the console.

Implementation

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