printBlue function

void printBlue(
  1. String text
)

Implementation

void printBlue(String text) {
  print('\x1B[34m$text\x1B[0m');
}