strikeThrough function

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

Styles the input strikeThrough

Also see style.

Implementation

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