logInWhite function

void logInWhite(
  1. String? text
)

Will print the text in white color to the console.

Implementation

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