hidden function

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

Styles the input hidden

Also see style.

Implementation

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