faint function

String faint(
  1. Object input, {
  2. bool reset = true,
})

Styles the input faint

Also see style.

Implementation

String faint(Object input, {bool reset = true}) =>
    style(input, ConsoleTextStyle(faint: true), reset);