step static method

void step(
  1. String message
)

Print a subtle progress update (magenta)

Implementation

static void step(String message) {
  stdout.writeln('$_magenta➡️  $message$_reset\n');
}