italic function

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

Styles the input italic

Also see style.

Implementation

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