blue function

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

Colors the input blue.

Also see style.

Implementation

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