section static method

void section(
  1. String text
)

Implementation

static void section(String text) {
  stdout.writeln('');
  stdout.writeln('▸ $text');
  stdout.writeln('');
}