underline function

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

Styles the input underline

Also see style.

Implementation

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