bold static method

void bold(
  1. String message
)

Implementation

static void bold(String message) {
  print('\x1B[1m$message\x1B[0m');
}