bold function

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

Styles the input bold

Also see style.

Implementation

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