yellowBright function

String yellowBright(
  1. Object input, {
  2. bool background = false,
  3. bool reset = true,
})

Colors the input bright yellow.

Also see style.

Implementation

String yellowBright(Object input, {bool background = false, bool reset = true}) =>
    color(ConsoleColor.yellowBright, input, background: background, reset: reset);