header method

void header(
  1. String title
)

Public method or function.

Implementation

void header(String title) {
  terminal.writeLine('');
  terminal.writeLine('=== $title ===');
  terminal.writeLine('');
}