cyan function

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

Colors the input cyan.

Also see style.

Implementation

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