header static method

void header(
  1. String title
)

Implementation

static void header(String title) {
  stdout.writeln('');
  stdout.writeln('\x1B[1;36m══════════════════════════════════════\x1B[0m');
  stdout.writeln('\x1B[1;36m  $title\x1B[0m');
  stdout.writeln('\x1B[1;36m══════════════════════════════════════\x1B[0m');
  stdout.writeln('');
}