yellow static method

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

Log to console in yellow

Implementation

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