black function

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

Colors the input black.

Also see style.

Implementation

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