whiteBright function

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

Colors the input bright white.

Also see style.

Implementation

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