step static method

void step(
  1. int step,
  2. int total,
  3. String description
)

Display a step counter

Implementation

static void step(int step, int total, String description) {
  stdout.writeln('  [$step/$total] $description');
}