yellow static method

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

Implementation

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