cyanBright function

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

Colors the input bright cyan.

Also see style.

Implementation

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