header static method
Prints a formatted header message with borders.
Implementation
static void header(String message) {
print(
'\n$_cyan═══════════════════════════════════════════════════════$_reset');
print('$_cyan $message$_reset');
print(
'$_cyan═══════════════════════════════════════════════════════$_reset\n');
}