logInBlue function

void logInBlue(
  1. String? text
)

Will print the text in blue color to the console.

Implementation

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