yellow static method

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

Implementation

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