subHeader static method

void subHeader(
  1. String title
)

Display a sub-header

Implementation

static void subHeader(String title) {
  stdout.writeln('');
  stdout.writeln('┌─ $title');
  stdout.writeln('│');
}