blue static method

void blue(
  1. String message, {
  2. String prefix = 'ℹ️',
})

Convenience methods for each color:

Implementation

static void blue(String message, {String prefix = 'ℹ️'}) {
  log(message, prefix: prefix, color: _blue);
}