overline function

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

Styles the input overline

Also see style.

Implementation

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