blue static method

void blue(
  1. String text, {
  2. String name = 'blue',
})

Log to console in blue

Implementation

static void blue(String text, {String name = 'blue'}) => developer.log(
      '\x1B[34m$text\x1B[0m',
      name: name,
    );