bold static method

String bold(
  1. dynamic str
)

Bold output.

Implementation

static String bold(str) => '\u001b[1m' + str + reset;