title static method

void title(
  1. String message
)

Print a section title or header (cyan + bold)

Implementation

static void title(String message) {
  stdout.writeln('\n$_bold$_cyan🚀 $message$_reset\n');
}